Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 486 for gold (0.09 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    					if replacementWritten[r.Old] {
    						// We already recorded this replacement.
    						continue
    					}
    					replacementWritten[r.Old] = true
    					rNew := modload.Replacement(r.Old)
    					if rNew == (module.Version{}) {
    						// There is no replacement. Don't try to write it.
    						continue
    					}
    
    					line := moduleLine(r.Old, rNew)
    					buf.WriteString(line)
    					if cfg.BuildV {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            file('bad-lib/file.txt').createFile().write('bad')
            file('good-lib/file.txt').createFile().write('good')
    
            buildFile << '''
    apply plugin: 'ear'
    ear {
       duplicatesStrategy = 'exclude'
       into('lib') {
           from 'bad-lib'
       }
       lib {
           from 'good-lib'
       }
    }'''
    
            when:
            run 'assemble';
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclass_test.go

    	badAPIGroup := "example.com/v1"
    	goodAPIGroup := "example.com"
    
    	scenarios := map[string]struct {
    		class        *resource.ResourceClass
    		wantFailures field.ErrorList
    	}{
    		"good-class": {
    			class: testClass(goodName, goodName),
    		},
    		"good-long-driver-name": {
    			class: testClass(goodName, "acme.example.com"),
    		},
    		"missing-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        stopwatch.sleepMillis(4000); // #3: becomes cold again
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // // #4
        }
        stopwatch.sleepMillis(500); // #5: to repay for the last acquire
        stopwatch.sleepMillis(2000); // #6: didn't get cold! It would take another 2 seconds to go cold
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #7
        }
        assertEvents(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        stopwatch.sleepMillis(4000); // #3: becomes cold again
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // // #4
        }
        stopwatch.sleepMillis(500); // #5: to repay for the last acquire
        stopwatch.sleepMillis(2000); // #6: didn't get cold! It would take another 2 seconds to go cold
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #7
        }
        assertEvents(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  6. internal/bucket/object/lock/lock.go

    		mode = RetCompliance
    	}
    	return mode
    }
    
    // LegalHoldStatus - object legal hold status.
    type LegalHoldStatus string
    
    const (
    	// LegalHoldOn - legal hold is on.
    	LegalHoldOn LegalHoldStatus = "ON"
    
    	// LegalHoldOff - legal hold is off.
    	LegalHoldOff LegalHoldStatus = "OFF"
    )
    
    // Valid - returns true if legal hold status has valid values
    func (l LegalHoldStatus) Valid() bool {
    	switch l {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			t.Errorf("expected false for %q", val)
    		}
    	}
    }
    
    func TestIsConfigMapKey(t *testing.T) {
    	successCases := []string{
    		"a",
    		"good",
    		"good-good",
    		"still.good",
    		"this.is.also.good",
    		".so.is.this",
    		"THIS_IS_GOOD",
    		"so_is_this_17",
    	}
    
    	for i := range successCases {
    		if errs := IsConfigMapKey(successCases[i]); len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/FilteringClassLoaderTest.groovy

            withSpec(parent) { FilteringClassLoader.Spec spec ->
                spec.allowPackage("good")
            }
    
            when:
            classLoader.loadClass("good.Clazz")
    
            //noinspection GroovyAccessibility
            then:
            1 * parent.loadClass("good.Clazz", false) >> String
            0 * parent._
    
            when:
            classLoader.loadClass("bad.Clazz")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	//    param may point to a savedOpenDeferState.
    	param        unsafe.Pointer
    	atomicstatus atomic.Uint32
    	stackLock    uint32 // sigprof/scang lock; TODO: fold in to atomicstatus
    	goid         uint64
    	schedlink    guintptr
    	waitsince    int64      // approx time when the g become blocked
    	waitreason   waitReason // if status==Gwaiting
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    	badName := "!@#$%^"
    	badValue := "spaces not allowed"
    	now := metav1.Now()
    
    	scenarios := map[string]struct {
    		parameters   *resource.ResourceClaimParameters
    		wantFailures field.ErrorList
    	}{
    		"good": {
    			parameters: testResourceClaimParameters(goodName, goodName, goodRequests),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top