Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for rfind (0.68 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public ClassLoaderScope getBaseClassLoaderScope() {
            return baseClassLoaderScope;
        }
    
        /**
         * This is called by the task creation DSL. Need to find a cleaner way to do this...
         */
        public Object passThrough(Object object) {
            return object;
        }
    
        @Override
        public <T> NamedDomainObjectContainer<T> container(Class<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    	// longer needed because all of the other in-flight pods started
    	// later. Those events can be removed.
    	inFlightEvents *list.List
    
    	// activeQ is heap structure that scheduler actively looks at to find pods to
    	// schedule. Head of heap is the highest priority pod.
    	activeQ *heap.Heap
    	// podBackoffQ is a heap ordered by backoff expiry. Pods which have completed backoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	fgFlagName := "feature-gates"
    	fg := fs.Lookup(fgFlagName)
    	if fg == nil {
    		t.Fatalf("didn't find %q flag", fgFlagName)
    	}
    
    	expectedWatchListClientString := "WatchListClient=true|false (BETA - default=false)"
    	if !strings.Contains(fg.Usage, expectedWatchListClientString) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    //
    // Allocating a small object proceeds up a hierarchy of caches:
    //
    //	1. Round the size up to one of the small size classes
    //	   and look in the corresponding mspan in this P's mcache.
    //	   Scan the mspan's free bitmap to find a free slot.
    //	   If there is a free slot, allocate it.
    //	   This can all be done without acquiring a lock.
    //
    //	2. If the mspan has no free slots, obtain a new mspan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        println("Resolving provider")
                        def trace = new Throwable().getStackTrace()
                        def getSharedResources = ${AbstractTask.name}.methods.find { it.name == "getSharedResources" }
                        assert getSharedResources != null
                        assert !trace.any {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            ResolveException e = thrown()
            def stacktrace = ExceptionUtil.printStackTrace(e)
            stacktrace.contains("Could not find dummyGroupId:dummyArtifactId:dummyVersion")
        }
    
        def "locking usage changes prevents #usageName usage changes"() {
            given:
            def conf = conf()
            conf.preventUsageMutation()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. cmd/sts-handlers_test.go

    		}
    
    		// Retrieve the STS account's credential object.
    		u, ok := globalIAMSys.GetUser(ctx, value.AccessKeyID)
    		if !ok {
    			c.Fatalf("Expected to find user %s", value.AccessKeyID)
    		}
    
    		if u.Credentials.AccessKey != value.AccessKeyID {
    			c.Fatalf("Expected access key %s, got %s", value.AccessKeyID, u.Credentials.AccessKey)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            return callExpression
        }
    
        /**
         * For `=` and compound access like `+=`, `-=`, `*=`, `/=`, `%=`, the LHS of the binary expression is not a complete call. Hence we
         * find the containing binary expression and resolve that instead.
         *
         * However, if, say, `+=` resolves to `plusAssign`, then the LHS is self-contained. In this case we do not return the containing binary
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if err := json.Unmarshal(merged, &parsed); err != nil {
    			return err
    		}
    
    		return updateMyCRDV1Beta1Schema{
    			newSchema: &parsed,
    		}.Do(ctx)
    	}
    
    	return fmt.Errorf("could not find version %v in CRD %v", myCRDV1Beta1.Version, myCRD.Name)
    }
    
    func (p patchMyCRDV1Beta1Schema) Description() string {
    	return p.description
    }
    
    type ratchetingTestCase struct {
    	Name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. .bazelrc

    # WARNING: THESE OPTIONS WONT WORK IF YOU DO NOT HAVE PROPER AUTHENTICATION AND PERMISSIONS
    
    # Use --config=tf_public_cache to try and use the TensorFlow public build cache
    # to build TensorFlow. Look at ci/official/envs to find which types of jobs
    # push to the cache.  For macOS, use --config=tf_public_macos_cache
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top