Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,188 for adown (0.05 sec)

  1. hack/e2e-internal/e2e-shrink-cluster.sh

      export MULTIZONE="${2}"
    fi
    if [[ -n "${3:-}" ]]; then
      export KUBE_DELETE_NODES="${3}"
    fi
    if [[ -n "${4:-}" ]]; then
      export KUBE_USE_EXISTING_MASTER="${4}"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 962 bytes
    - Viewed (0)
  2. src/internal/abi/escape.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    import "unsafe"
    
    // NoEscape hides the pointer p from escape analysis, preventing it
    // from escaping to the heap. It compiles down to nothing.
    //
    // WARNING: This is very subtle to use correctly. The caller must
    // ensure that it's truly safe for p to not escape to the heap by
    // maintaining runtime pointer invariants (for example, that globals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 884 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/merge_node_with_function.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-upgrade-legacy %s
    
    # This is a stripped down GraphDef of the model from b/175240312. To hit the
    # bug, the GraphDef needs to have functions in the library and also a Merge node
    # to go into certain part of the functionalization code where it crashes.
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_BOOL
        }
      }
    }
    node {
      name: "Switch0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 14 20:47:36 UTC 2021
    - 1K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/gomaxprocs.go

    			time.Sleep(1 * time.Millisecond)
    		}
    	}()
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	// Run GOMAXPROCS a bunch of times, up and down.
    	for i := 1; i <= 16; i *= 2 {
    		runtime.GOMAXPROCS(i)
    		time.Sleep(1 * time.Millisecond)
    	}
    	for i := 16; i >= 1; i /= 2 {
    		runtime.GOMAXPROCS(i)
    		time.Sleep(1 * time.Millisecond)
    	}
    	// Stop tracing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 967 bytes
    - Viewed (0)
  5. pkg/controller/deployment/rolling_test.go

    			deploymentReplicas:  10,
    			maxUnavailable:      intstr.FromInt32(2),
    			oldReplicas:         10,
    			newReplicas:         0,
    			readyPodsFromOldRS:  9,
    			readyPodsFromNewRS:  0,
    			scaleExpected:       true,
    			expectedOldReplicas: 8,
    		},
    		{ // the unavailable pods from the newRS would not make us scale down old RSs in a further step
    			deploymentReplicas: 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/metrics.go

    	// RecordRequestTotal increments the total number of requests for webhooks
    	RecordRequestTotal func(ctx context.Context, code string)
    
    	// RecordRequestLatency measures request latency in seconds for webhooks. Broken down by status code.
    	RecordRequestLatency func(ctx context.Context, code string, latency float64)
    }
    
    type noopMetrics struct{}
    
    func (noopMetrics) RequestTotal(context.Context, string)            {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

        ) {
            this.userInput = userInput;
            // Use a single reader thread, and make it a daemon thread so that it does not block process shutdown
            // In most cases, we try to cleanly shut down all threads. However, in this case it is difficult to disconnect a thread blocked trying to read from the
            // process' stdin, so use a daemon thread instead.
            executor = Executors.newSingleThreadExecutor(r -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

            then:
            transform(current, file) == relativePath
    
            where:
            filePath                           | relativePath
            "subdir/down/../another"           | "../../subdir/another"
            "subdir/down/../another/child.txt" | "../../subdir/another/child.txt"
        }
    
        def "handles current is root"() {
            when:
            def file = new File(rootDir, filePath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/metrics.go

    )
    
    var (
    	regenerationCounter = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Name:           "apiextensions_openapi_v3_regeneration_count",
    			Help:           "Counter of OpenAPI v3 spec regeneration count broken down by group, version, causing CRD and reason.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"group", "version", "crd", "reason"},
    	)
    )
    
    func init() {
    	legacyregistry.MustRegister(regenerationCounter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 22:10:50 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    		Name:         "certs [api-server-endpoint]",
    		Short:        "Generate the certificates for the new control plane components",
    		Run:          runControlPlanePrepareCertsPhaseLocal, //NB. eventually in future we would like to break down this in sub phases for each cert or add the --csr option
    		InheritFlags: getControlPlanePreparePhaseFlags("certs"),
    	}
    }
    
    func newControlPlanePrepareKubeconfigSubphase() workflow.Phase {
    	return workflow.Phase{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top