Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,109 for hard (0.04 sec)

  1. maven-model-builder/src/test/resources/poms/validation/hard-coded-system-path.xml

      <dependencies>
        <dependency>
          <groupId>test</groupId>
          <artifactId>a</artifactId>
          <version>0.2</version>
          <scope>system</scope>
          <systemPath>should-use-variables-and-not-hard-code-this-path</systemPath>
        </dependency>
        <dependency>
          <groupId>test</groupId>
          <artifactId>b</artifactId>
          <version>0.1</version>
          <scope>system</scope>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 27 17:19:32 UTC 2010
    - 1.4K bytes
    - Viewed (0)
  2. src/internal/coverage/pkid.go

    //
    //    internal error in coverage meta-data tracking:
    //    list of hard-coded runtime package IDs needs revising.
    //    registered list:
    //    slot: 0 path='internal/cpu'  hard-coded id: 1
    //    slot: 1 path='internal/goarch'  hard-coded id: 2
    //    slot: 2 path='internal/runtime/atomic'  hard-coded id: 3
    //    slot: 3 path='internal/goos'
    //    slot: 4 path='runtime/internal/sys'  hard-coded id: 5
    //    slot: 5 path='internal/abi'  hard-coded id: 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/resource_quota_controller_test.go

    		}
    
    		// ensure usage is as expected
    		if len(usage.Status.Hard) != len(testCase.status.Hard) {
    			t.Errorf("test: %s, status hard lengths do not match", testName)
    		}
    		if len(usage.Status.Used) != len(testCase.status.Used) {
    			t.Errorf("test: %s, status used lengths do not match", testName)
    		}
    		for k, v := range testCase.status.Hard {
    			actual := usage.Status.Hard[k]
    			actualValue := actual.String()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gopath_local.txt

    exec ./easysub$GOEXE
    stdout '^easysub\.Hello'
    
    # Files in relative-imported packages should be able to
    # use relative imports themselves.
    go build testdata/local/hard.go
    exec ./hard$GOEXE
    stdout '^sub\.Hello'
    
    # Explicit source files listed on the command line should not install without
    # GOBIN set, since individual source files aren't part of the containing GOPATH.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DefaultPendingDependenciesVisitor.java

            // Adding an optional dependency: see if we already have a hard dependency on the same module
            ModuleResolveState module = resolveState.getModule(key);
            boolean pending = module.isPending();
    
            // Already have a hard dependency, this optional dependency is not pending.
            if (!pending) {
                return PendingState.NOT_PENDING;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/resourcequotastatus.go

    }
    
    // WithHard sets the Hard field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Hard field is set to the value of the last call.
    func (b *ResourceQuotaStatusApplyConfiguration) WithHard(value v1.ResourceList) *ResourceQuotaStatusApplyConfiguration {
    	b.Hard = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. src/syscall/rlimit_test.go

    	// macOS sets the default soft limit to 256 and no hard limit.
    	// CentOS and Fedora set the default soft limit to 1024,
    	// with hard limits of 4096 and 524288, respectively.
    	// Check that we can open 1200 files, which proves
    	// that the rlimit is being raised appropriately on those systems.
    	fileCount := 1200
    
    	// OpenBSD has a default soft limit of 512 and hard limit of 1024.
    	if runtime.GOOS == "openbsd" {
    		fileCount = 768
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 21:22:57 UTC 2023
    - 953 bytes
    - Viewed (0)
  8. docs/bucket/quota/README.md

    Buckets can be configured to have `Hard` quota - it disallows writes to the bucket after configured quota limit is reached.
    
    ## Prerequisites
    
    - Install MinIO - [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#procedure).
    - [Use `mc` with MinIO Server](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart)
    
    ## Set bucket quota configuration
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission_test.go

    		expected bool
    	}{
    		"empty": {
    			a:        corev1.ResourceQuota{Status: corev1.ResourceQuotaStatus{Hard: corev1.ResourceList{}}},
    			relevant: []corev1.ResourceName{corev1.ResourceMemory},
    			expected: true,
    		},
    		"hard-only": {
    			a: corev1.ResourceQuota{
    				Status: corev1.ResourceQuotaStatus{
    					Hard: corev1.ResourceList{
    						corev1.ResourceMemory: resource.MustParse("1Gi"),
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/resourcequotaspec.go

    }
    
    // WithHard sets the Hard field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Hard field is set to the value of the last call.
    func (b *ResourceQuotaSpecApplyConfiguration) WithHard(value v1.ResourceList) *ResourceQuotaSpecApplyConfiguration {
    	b.Hard = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top