Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for main2 (0.07 sec)

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

        # for the bug where the logging agent cannot start up if the file is
        # corrupted.
        Remove-Item `
          -Force `
          -ErrorAction Ignore `
          ("$STACKDRIVER_ROOT\LoggingAgent\Main\pos\winevtlog.pos\worker0\" +
           "storage.json")
        Log-Output ("Skip: Stackdriver logging agent is already installed")
        return
      }
    
      if (IsLoggingAgentInstalled) {
    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. docs/bucket/notifications/README.md

    ### Step 3: Test on NATS
    
    If you use NATS server, check out this sample program below to log the bucket notification added to NATS.
    
    ```go
    package main
    
    // Import Go and NATS packages
    import (
     "log"
     "runtime"
    
     "github.com/nats-io/nats.go"
    )
    
    func main() {
    
     // Create server connection
     natsConnection, _ := nats.Connect("nats://yourusername:yoursecret@localhost:4222")
     log.Println("Connected")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            }
        }
    
        def "reports problems in buildSrc plugin"() {
            file("buildSrc/src/main/java/SneakyPlugin.java") << """
                import ${Project.name};
                import ${Plugin.name};
    
                public class SneakyPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // threads will not be deleted.
    //
    // Google Test only uses global ThreadLocal objects.  That means they
    // will die after main() has returned.  Therefore, no per-thread
    // object managed by Google Test will be leaked as long as all threads
    // using Google Test have exited when main() returns.
    template <typename T>
    class ThreadLocal {
     public:
      ThreadLocal() : key_(CreateKey()),
                      default_() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	Pos  token.Position // position of comment
    }
    
    // IsCommand reports whether the package is considered a
    // command to be installed (not just a library).
    // Packages named "main" are treated as commands.
    func (p *Package) IsCommand() bool {
    	return p.Name == "main"
    }
    
    // ImportDir is like [Import] but processes the Go package found in
    // the named directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    	//     abort:      N.A.
    	operationTimestamps metrics.OperationStartTimeCache
    
    	translator               CSINameTranslator
    	csiMigratedPluginManager CSIMigratedPluginManager
    }
    
    // syncClaim is the main controller method to decide what to do with a claim.
    // It's invoked by appropriate cache.Controller callbacks when a claim is
    // created, updated or periodically synced. We do not differentiate between
    // these events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	qsc, err := qsf.BeginConstruction(qCfg, newGaugePair(clk), newExecSeatsGauge(clk), seatDemandIntegratorSubject)
    	if err != nil {
    		t.Fatal(err)
    	}
    	qs := qsComplete(qsc, 1)
    	counter.Add(1) // account for main activity of the goroutine running this test
    	ctx1 := context.Background()
    	pZero := func() *int32 { var zero int32; return &zero }
    	// counts of calls to the QueueNoteFns
    	queueNoteCounts := map[int]map[bool]*int32{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass removes ops from a `tf_executor.graph` that are not transitively, via
    data or control dependencies, connected to the associated `tf_executor.fetch`
    op. The order of ops will be preserved. Functions named `main` with no
    `tf.entry_function` attribute will not be pruned, as such graphs/functions may
    have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    		},
    		"kill the pod if all main containers succeeded if pod's RestartPolicy == Never": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyNever },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				// all main containers succeeded
    				for i := 1; i <= 3; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if len(pod.Spec.InitContainers) == 0 {
    		return nil, nil, true
    	}
    
    	// If any of the main containers have status and are Running, then all init containers must
    	// have been executed at some point in the past.  However, they could have been removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top