Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for duck (0.03 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

            def appProject = xcodeProject("app/app.xcodeproj").projectFile
            appProject.indexTarget.getBuildSettings().HEADER_SEARCH_PATHS == toSpaceSeparatedList(file("app/src/main/headers"), file("deck/src/main/public"), file("card/src/main/public"))
            def deckProject = xcodeProject("deck/deck.xcodeproj").projectFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

                    }
                }
                project(':deck') {
                    dependencies {
                        api project(':card')
                        implementation project(':shuffle')
                    }
                }
    """
            app.deck.writeToProject(file('deck'))
            app.card.writeToProject(file('card'))
            app.shuffle.writeToProject(file('shuffle'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. src/runtime/pprof/proto.go

    // and returns the location ID encoded in the profile protobuf.
    // It emits to b.pb, so there must be no message encoding in progress.
    // It resets the deck.
    func (b *profileBuilder) emitLocation() uint64 {
    	if len(b.deck.pcs) == 0 {
    		return 0
    	}
    	defer b.deck.reset()
    
    	addr := b.deck.pcs[0]
    	firstFrame := b.deck.frames[0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            app.card.writeToProject(file("card"))
            app.shuffle.writeToProject(file("shuffle"))
            app.main.writeToProject(file("app"))
    
            expect:
            succeeds ":app:assemble"
    
            result.assertTasksExecuted([':card', ':deck', ':shuffle'].collect { tasks(it).debug.allToLink }, tasks(':app').debug.allToInstall, ":app:assemble")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top