Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for creat (0.14 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * Start a {@code ClosingFuture} pipeline {@linkplain #submit(ClosingCallable, Executor) from a
     * callable block} that may capture objects for later closing. To start a pipeline from a {@link
     * ListenableFuture} that doesn't create resources that should be closed later, you can use {@link
     * #from(ListenableFuture)} instead.
     *
     * <h3>Derived steps</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			if tc.setStartTime {
    				start := metav1.NewTime(fakeClock.Now())
    				job.Status.StartTime = &start
    			}
    
    			_, err := clientset.BatchV1().Jobs(job.GetNamespace()).Create(ctx, job, metav1.CreateOptions{})
    			if err != nil {
    				t.Errorf("Could not create Job: %v", err)
    			}
    
    			var j *batch.Job
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // file in the directory that is not included when building
    // the package.
    //
    // The -i flag causes clean to remove the corresponding installed
    // archive or binary (what 'go install' would create).
    //
    // The -n flag causes clean to print the remove commands it would execute,
    // but not run them.
    //
    // The -r flag causes clean to be applied recursively to all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			require.NoError(t, err, "could not create a temp hosts file")
    			defer os.RemoveAll(tmpdir)
    
    			actualContent, fileReadErr := nodeHostsFileContent(filepath.Join(tmpdir, testCase.hostsFileName), testCase.hostAliases)
    			require.NoError(t, fileReadErr, "could not create read hosts file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"has(self.setDefaultedStr) && self.setDefaultedStr == 'v2'",
    				"has(self.setNullableStr) && self.setNullableStr == 'v3'",
    				// We treat null fields as absent fields, not as null valued fields.
    				// Note that this is different than how we treat nullable list items or map values.
    				"type(self.setNullableStr) != null_type",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		ldr.SetSymAlign(ldr.Lookup("runtime.bss", 0), state.dataMaxAlign[sym.SBSS])
    	}
    
    	// Create *sym.Section objects and assign symbols to sections for
    	// data/rodata (and related) symbols.
    	state.allocateDataSections(ctxt)
    
    	state.allocateSEHSections(ctxt)
    
    	// Create *sym.Section objects and assign symbols to sections for
    	// DWARF symbols.
    	state.allocateDwarfSections(ctxt)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

       * soft/weak entries.
       */
      final RemovalListener<K, V> removalListener;
    
      /** Measures time in a testable way. */
      final Ticker ticker;
    
      /** Factory used to create new entries. */
      final EntryFactory entryFactory;
    
      /**
       * Accumulates global cache statistics. Note that there are also per-segments stats counters which
       * must be aggregated to obtain a global stats view.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

       * soft/weak entries.
       */
      final RemovalListener<K, V> removalListener;
    
      /** Measures time in a testable way. */
      final Ticker ticker;
    
      /** Factory used to create new entries. */
      final EntryFactory entryFactory;
    
      /**
       * Accumulates global cache statistics. Note that there are also per-segments stats counters which
       * must be aggregated to obtain a global stats view.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/eviction_manager_test.go

    		summaryProvider:              summaryProvider,
    		nodeRef:                      nodeRef,
    		nodeConditionsLastObservedAt: nodeConditionsObservedAt{},
    		thresholdsFirstObservedAt:    thresholdsObservedAt{},
    	}
    
    	// create a best effort pod to test admission
    	bestEffortPodToAdmit, _ := podMaker("best-admit", defaultPriority, newResourceList("", "", ""), newResourceList("", "", ""), "0Gi")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    		}
    
    		derBytes, err := CreateCertificateRequest(random, &template, test.priv)
    		if err != nil {
    			t.Errorf("%s: failed to create certificate request: %s", test.name, err)
    			continue
    		}
    
    		out, err := ParseCertificateRequest(derBytes)
    		if err != nil {
    			t.Errorf("%s: failed to create certificate request: %s", test.name, err)
    			continue
    		}
    
    		err = out.CheckSignature()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top