Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for duck (0.06 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

             'java.version': "bad luck",
             'java.vendor': "Oracle Corporation",
             'os.arch': "amd64",
             'java.vm.name': "OpenJDK 64-Bit Server VM",
             'java.vm.version': "25.40-b25",
             'java.vm.vendor': "Oracle Corporation",
             'java.runtime.name': "Java(TM) SE Runtime Environment",
             'java.runtime.version': "bad luck"
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection_test.go

    	client.Fake.PrependReactor("update", "*", func(action k8stesting.Action) (bool, runtime.Object, error) {
    		if allowRbac.Load() {
    			return false, nil, nil
    		}
    		return true, nil, fmt.Errorf("nope, out of luck")
    	})
    
    	completions := atomic.NewInt32(0)
    	l, stop := createElection(t, "pod1", "", watcher, true, client, func(stop <-chan struct{}) {
    		completions.Add(1)
    	})
    	// Expect to run once
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	mockClient := newMockClientForTest(map[string]v1.NamespacePhase{})
    	mockClient.AddReactor("get", "namespaces", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, fmt.Errorf("nope, out of luck")
    	})
    	handler, informerFactory, err := newHandlerForTest(mockClient)
    	if err != nil {
    		t.Errorf("unexpected error initializing handler: %v", err)
    	}
    
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. src/runtime/write_err_android.go

    	if errno < 0 {
    		msg := []byte("runtime: cannot connect to /dev/socket/logdw\x00")
    		write(2, unsafe.Pointer(&msg[0]), int32(len(msg)))
    		// TODO(hakim): or should we just close fd and hope for better luck next time?
    		exit(2)
    	}
    	writeFD = uintptr(fd)
    
    	// Prepopulate invariant part of the header.
    	// The first 11 bytes will be populated later in writeLogdHeader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

                }
                project(':lib2') {
                    apply plugin: 'cpp-library'
                }
                project(':lib3') {
                    apply plugin: 'cpp-library'
                }
    """
            app.deck.writeToProject(file("lib1"))
            app.card.writeToProject(file("lib2"))
            app.shuffle.writeToProject(file("lib3"))
    
            expect:
            succeeds tasks(':lib1').debug.assemble
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    		}
    	}
    
    	resourceQuotas := []corev1.ResourceQuota{}
    	for i := range items {
    		quota := items[i]
    		quota = e.checkCache(quota)
    		// always make a copy.  We're going to muck around with this and we should never mutate the originals
    		resourceQuotas = append(resourceQuotas, *quota)
    	}
    
    	return resourceQuotas, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv10-ExportKeyingMaterial

    >>> Flow 3 (client to server)
    00000000  16 03 01 00 25 10 00 00  21 20 01 39 8b 2b 21 99  |....%...! .9.+!.|
    00000010  fd fc b8 20 f1 51 97 c7  85 13 05 64 55 41 6b c4  |... .Q.....dUAk.|
    00000020  1a 5e d5 b2 7c 8b 31 08  0f 78 14 03 01 00 01 01  |.^..|.1..x......|
    00000030  16 03 01 00 30 d8 3b e6  9f f8 a8 b2 6b 8b fb 89  |....0.;.....k...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/podcgroupns.go

    	// - 0::/../crio-45490e76e0878aaa4d9808f7d2eefba37f093c3efbba9838b6d8ab804d9bd814.scope
    	// First trim off any .scope suffix. This allows for a cleaner regex since
    	// we don't have to muck with greediness. TrimSuffix is no-copy so this
    	// is cheap.
    	cgroupPath = strings.TrimSuffix(cgroupPath, ".scope")
    
    	var matchResults map[string]string
    	for _, regex := range cgroupREs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

            // Short circuit for the (hopefully) majority of cases where the
            // clazz is public
            if (Modifier.isPublic(clazz.getModifiers())) {
                return methods;
            }
    
            // No luck - the class is not public, so we're going the longer way.
            MethodInfo[] methodInfos = new MethodInfo[methods.length];
            for (int i = methods.length; i-- > 0; ) {
                methodInfos[i] = new MethodInfo(methods[i]);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. src/crypto/ecdh/ecdh_test.go

    		// the probability of a rejection is 1-ord(G)/2^ceil(log2(ord(G))),
    		// which for all curves is small enough (at most 2^-32, for P-256) that
    		// a bit flip is more likely to make this test fail than bad luck.
    		// Account for the extra MaybeReadByte byte, too.
    		if got, expected := r.n, len(k.Bytes())+1; got > expected {
    			t.Errorf("expected GenerateKey to consume at most %v bytes, got %v", expected, got)
    		}
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top