Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 251 for GETs (0.03 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

            } catch (UnsupportedOperationException e) {
                return -1;
            }
        }
    
        /**
         * Select idle daemon clients to stop.
         *
         * @param selectionFunction Gets all idle daemon clients, daemons of returned clients are stopped
         */
        @VisibleForTesting
        void selectIdleClientsToStop(Transformer<List<WorkerDaemonClient>, List<WorkerDaemonClient>> selectionFunction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VariantResolvingArtifactSet.java

            } else {
                return ImmutableSet.of(variant.prepareForArtifactResolution().resolveAdhocVariant(variantResolver, artifacts));
            }
        }
    
        /**
         * Gets all artifact variants that should be considered for artifact selection.
         *
         * <p>This emulates the normal variant selection process where graph variants are first
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. internal/config/cache/cache.go

    	}
    
    	if c.Endpoint == "" {
    		// Endpoint not set, make this a no-op
    		return nil, nil
    	}
    
    	buf, err := r.MarshalMsg(nil)
    	if err != nil {
    		return nil, err
    	}
    
    	// We do not want Gets to take so much time, anything
    	// beyond 250ms we should cut it, remote cache is too
    	// busy already.
    	ctx, cancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/tracing.go

    	zipkinInst     zipkin.Instance
    	appNsInst      namespace.Instance
    )
    
    const (
    	TraceHeader = "x-client-trace-id"
    )
    
    func GetIstioInstance() *istio.Instance {
    	return &ist
    }
    
    // GetAppNamespace gets echo app namespace instance.
    func GetAppNamespace() namespace.Instance {
    	return appNsInst
    }
    
    func GetIngressInstance() ingress.Instance {
    	return ingInst
    }
    
    func GetZipkinInstance() zipkin.Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/templates/daemonset.yaml

          {{- with .Values.cni.affinity }}
          affinity:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          tolerations:
            # Make sure istio-cni-node gets scheduled on all nodes.
            - effect: NoSchedule
              operator: Exists
            # Mark the pod as a critical add-on for rescheduling.
            - key: CriticalAddonsOnly
              operator: Exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	// - Delete: delete events could be triggered by:
    	//           - a Pod that is deleted
    	//           - a Pod that was assumed, but gets un-assumed due to some errors in the binding cycle.
    	//           - an existing Pod that was unscheduled but gets scheduled to a Node.
    	//
    	// Note that the Pod event type includes the events for the unscheduled Pod itself.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            });
    
            // close all streams and redirect IO
            redirectOutputsAndInput(log);
    
            // after redirecting we need to add the new std out/err to the renderer singleton
            // so that logging gets its way to the daemon log:
            loggingManager.attachSystemOutAndErr();
    
            // Making the daemon infrastructure log with DEBUG. This is only for the infrastructure!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    	tests := []struct {
    		name         string
    		pod          *v1.Pod
    		nodes        []*v1.Node
    		expectedList framework.NodeScoreList
    	}{
    		// basic test case
    		{
    			name: "node with taints tolerated by the pod, gets a higher score than those node with intolerable taints",
    			pod: podWithTolerations("pod1", []v1.Toleration{{
    				Key:      "foo",
    				Operator: v1.TolerationOpEqual,
    				Value:    "bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	isExternalEtcd         bool
    }
    
    var _ VersionGetter = &fakeVersionGetter{}
    
    // ClusterVersion gets a fake API server version
    func (f *fakeVersionGetter) ClusterVersion() (string, *versionutil.Version, error) {
    	return f.clusterVersion, versionutil.MustParseSemantic(f.clusterVersion), nil
    }
    
    // KubeadmVersion gets a fake kubeadm version
    func (f *fakeVersionGetter) KubeadmVersion() (string, *versionutil.Version, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

                return str(stablehlo_module)
        raise ValueError('No XlaCallModule found in saved model.')
    
      def _get_num_xla_call_module_op(self, output_saved_model_path: str) -> int:
        """Gets the number of XlaCallModule ops in the output saved model."""
        root = load.load(output_saved_model_path)
        tf_graph_def = root.signatures['serving_default'].graph.as_graph_def()
        count = 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top