Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,119 for nothings (0.15 sec)

  1. pkg/volume/util/fsquota/project.go

    	if err == nil {
    		// Check once more, to ensure nothing got changed out from under us
    		if err = projFilesAreOK(); err == nil {
    			err = lockFile(fProjects)
    			if err == nil {
    				err = lockFile(fProjid)
    				if err == nil {
    					return fProjects, fProjid, nil
    				}
    				// Nothing useful we can do if we get an error here
    				err = fmt.Errorf("unable to lock %s: %v", projidFile, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

            private
            fun illegalState(): Nothing =
                throw IllegalStateException("Operation is not valid in ${javaClass.simpleName} state.")
    
            class Idle(
                private val onFirstDiagnostic: (kind: DiagnosticKind, problem: PropertyProblem) -> State
            ) : State() {
    
                /**
                 * There's nothing to write, return null.
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                return from(!"false".equalsIgnoreCase(value));
            }
        }
    
        /**
         * Initializes the native services to use the given user home directory to store native libs and other resources. Does nothing if already initialized.
         *
         * Initializes all the services needed for the Gradle daemon.
         */
        public static void initializeOnDaemon(File userHomeDir, NativeServicesMode mode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. pkg/controller/deployment/deployment_controller_test.go

    	rs2 := newReplicaSet(d2, "rs2", 1)
    
    	f.dLister = append(f.dLister, d1, d2)
    	f.objects = append(f.objects, d1, d2, rs1, rs2)
    
    	// Create the fixture but don't start it,
    	// so nothing happens in the background.
    	dc, _, err := f.newController(ctx)
    	if err != nil {
    		t.Fatalf("error creating Deployment controller: %v", err)
    	}
    
    	dc.addReplicaSet(klog.FromContext(ctx), rs1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

                import org.gradle.workers.*
                abstract class MyWorkerAction implements WorkAction<WorkParameters.None>{
                    @Override public void execute() {
                        // Do nothing
                    }
                }
                task runInWorker {
                    doLast {
                        def workerExecutor = services.get(WorkerExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/aggregator.go

    	return map[schema.GroupVersion]APIServicePriority{
    		{Group: "", Version: "v1"}: {Group: 18000, Version: 1},
    		// to my knowledge, nothing below here collides
    		{Group: "events.k8s.io", Version: "v1"}:                      {Group: 17750, Version: 15},
    		{Group: "events.k8s.io", Version: "v1beta1"}:                 {Group: 17750, Version: 5},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/bootstrap/bootstrap_test.go

    	if err == nil {
    		t.Errorf("Got no error, wanted error an error because there was an empty private key passed in.")
    	}
    	if certData != nil {
    		t.Errorf("Got cert data, wanted nothing as there should have been an error.")
    	}
    }
    
    func TestRequestNodeCertificateErrorCreatingCSR(t *testing.T) {
    	client := newClientset(fakeClient{
    		failureType: createError,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    			expectedList: []framework.NodeScore{{Name: "node1", Score: framework.MaxNodeScore}, {Name: "node2", Score: framework.MaxNodeScore}},
    			name:         "nothing scheduled, nothing requested",
    			args:         config.NodeResourcesBalancedAllocationArgs{Resources: defaultResourceBalancedAllocationSet},
    			runPreScore:  true,
    		},
    		{
    			// Node1 scores on 0-MaxNodeScore scale
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			// CPU Score: ((4000 - 0) * MaxNodeScore) / 4000 = MaxNodeScore
    			// Memory Score: ((10000 - 0) * MaxNodeScore) / 10000 = MaxNodeScore
    			// Node2 Score: (MaxNodeScore + MaxNodeScore) / 2 = MaxNodeScore
    			name:         "nothing scheduled, nothing requested",
    			requestedPod: st.MakePod().Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

        public void crawl(final String sessionId) {
            final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getAllDataConfigList();
    
            if (configList.isEmpty()) {
                // nothing
                if (logger.isInfoEnabled()) {
                    logger.info("No crawling target data.");
                }
                return;
            }
    
            doCrawl(sessionId, configList);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top