Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,629 for starts (0.09 sec)

  1. pkg/kubelet/util/node_startup_latency_tracker_test.go

            # HELP kubelet_node_startup_pre_kubelet_duration_seconds [ALPHA] Duration in seconds of node startup before kubelet starts.
            # TYPE kubelet_node_startup_pre_kubelet_duration_seconds gauge
            kubelet_node_startup_pre_kubelet_duration_seconds 0
            # HELP kubelet_node_startup_pre_registration_duration_seconds [ALPHA] Duration in seconds of node startup before registration.
            # TYPE kubelet_node_startup_pre_registration_duration_seconds gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 05:54:25 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

    class FilePropertyLifecycleIntegrationTest extends AbstractIntegrationSpec implements TasksWithInputsAndOutputs {
        def "task #annotation file property is implicitly finalized when task starts execution"() {
            buildFile << """
                class SomeTask extends DefaultTask {
                    ${annotation}
                    final RegularFileProperty prop = project.objects.fileProperty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/recycle_test.go

    				// Delete the volume before recycle operation starts
    				reactor.DeleteVolume("volume6-6")
    			}),
    		},
    		{
    			// recycle success(?) - volume is recycled by previous recycler just
    			// at the time new doRecycle() starts. This simulates "volume no
    			// longer needs recycling, skipping".
    			name:            "6-7 - volume is deleted before recycling",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
    ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../x86_64-linux-gnu/include"
    #include "..." search starts here:
    #include <...> search starts here:
    ${includes.collect { " ${it}" }.join('\n')}
    End of search list.
    """
        }
    
        private static String clangVerboseOutput(String version = '5.0', includes = [], frameworks = []) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         *
         * @return The result.
         */
        ExecutionFailure runWithFailure();
    
        /**
         * Starts executing the build asynchronously.
         *
         * @return the handle, never null.
         */
        GradleHandle start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      let arguments = (ins
        F32Tensor:$inputs,
        F32Attr:$min,
        F32Attr:$max,
        // The bitwidth of the quantization; between 2 and 16, inclusive.
        I64Attr:$num_bits,
        // Quantization range starts from 0 or 1; starts from 1 if true.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$narrow_range,
        // The sign of the quantization.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$is_signed
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

      let arguments = (ins
        F32Tensor:$inputs,
        F32Attr:$min,
        F32Attr:$max,
        // The bitwidth of the quantization; between 2 and 16, inclusive.
        I64Attr:$num_bits,
        // Quantization range starts from 0 or 1; starts from 1 if true.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$narrow_range,
        // The sign of the quantization.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$is_signed
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. src/net/http/httptest/server.go

    	// NewUnstartedServer and calling Server.StartTLS.
    	EnableHTTP2 bool
    
    	// TLS is the optional TLS configuration, populated with a new config
    	// after TLS is started. If set on an unstarted server before StartTLS
    	// is called, existing fields are copied into the new config.
    	TLS *tls.Config
    
    	// Config may be changed after calling NewUnstartedServer and
    	// before Start or StartTLS.
    	Config *http.Server
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    // factor, with sliding = false (meaning the timer for period starts at the same
    // time as the function starts).
    func NonSlidingUntil(f func(), period time.Duration, stopCh <-chan struct{}) {
    	JitterUntil(f, period, 0.0, false, stopCh)
    }
    
    // NonSlidingUntilWithContext loops until context is done, running f every
    // period.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/delete_test.go

    				// Delete the volume before delete operation starts
    				reactor.DeleteVolume("volume8-6")
    			}),
    		},
    		{
    			// delete success(?) - volume is bound just at the time doDelete()
    			// starts. This simulates "volume no longer needs recycling,
    			// skipping".
    			name:            "8-7 - volume is bound before deleting",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top