Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for STARTING (0.1 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

        & sc.exe create csiproxy binPath= "${env:NODE_DIR}\csi-proxy.exe $flags"
        & sc.exe failure csiproxy reset= 0 actions= restart/10000
        Log-Output "Starting CSI Proxy Service"
        & sc.exe start csiproxy
        Write-VerboseServiceInfoToConsole -Service 'csiproxy' -Delay 1
      }
    }
    
    # TODO(pjh): this is copied from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #   define GTEST_HAS_RTTI 0
    #  endif  // __GXX_RTTI
    
    // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends
    // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the
    // first version with C++ support.
    # elif defined(__clang__)
    
    #  define GTEST_HAS_RTTI __has_feature(cxx_rtti)
    
    // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #   define GTEST_HAS_RTTI 0
    #  endif  // __GXX_RTTI
    
    // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends
    // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the
    // first version with C++ support.
    # elif defined(__clang__)
    
    #  define GTEST_HAS_RTTI __has_feature(cxx_rtti)
    
    // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    }
    
    // A Conflict is a path of requirements starting at a root or proposed root in
    // the requirement graph, explaining why that root either causes a module passed
    // in the mustSelect list to EditBuildList to be unattainable, or introduces an
    // unresolvable error in loading the requirement graph.
    type Conflict struct {
    	// Path is a path of requirements starting at some module version passed in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	logger.Info("Starting node controller")
    	defer logger.Info("Shutting down node controller")
    
    	if !cache.WaitForNamedCacheSync("taint", ctx.Done(), nc.leaseInformerSynced, nc.nodeInformerSynced, nc.podInformerSynced, nc.daemonSetInformerSynced) {
    		return
    	}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.SeparateTaintEvictionController) {
    		logger.Info("Starting", "controller", taintEvictionController)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	section section
    
    	// header keeps track of what should go in the header when Finish is
    	// called.
    	header header
    
    	// start is the starting index of the bytes allocated in msg for header.
    	start int
    
    	// compression is a mapping from name suffixes to their starting index
    	// in msg.
    	compression map[string]uint16
    }
    
    // NewBuilder creates a new builder with compression disabled.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	JMP	final1
    
    aes0:
    	// Return scrambled input seed
    	AESENC	X0, X0
    	MOVQ	X0, AX	// return X0
    	RET
    
    aes16:
    	MOVOU	(AX), X1
    	JMP	final1
    
    aes17to32:
    	// make second starting seed
    	PXOR	runtime·aeskeysched+16(SB), X1
    	AESENC	X1, X1
    
    	// load data to be hashed
    	MOVOU	(AX), X2
    	MOVOU	-16(AX)(CX*1), X3
    
    	// xor with seed
    	PXOR	X0, X2
    	PXOR	X1, X3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Whether need to create a new sandbox. If needed to kill pod and create
    	// a new pod sandbox, all init containers need to be purged (i.e., removed).
    	CreateSandbox bool
    	// The id of existing sandbox. It is used for starting containers in ContainersToStart.
    	SandboxID string
    	// The attempt number of creating sandboxes for the pod.
    	Attempt uint32
    
    	// The next init container to start.
    	NextInitContainerToStart *v1.Container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    	re := p.newRegexp(op)
    	re.Flags = p.flags
    	return p.push(re)
    }
    
    // repeat replaces the top stack element with itself repeated according to op, min, max.
    // before is the regexp suffix starting at the repetition operator.
    // after is the regexp suffix following after the repetition operator.
    // repeat returns an updated 'after' and an error, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// anyway; there's no need to go full blast on all of GOMAXPROCS.
    	//
    	// The maximum number of idle mark workers is used to prevent new workers
    	// from starting, but it is not a hard maximum. It is possible (but
    	// exceedingly rare) for the current number of idle mark workers to
    	// transiently exceed the maximum. This could happen if the maximum changes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top