Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,605 for paused (0.2 sec)

  1. tensorflow/compiler/mlir/init_mlir.h

    namespace tensorflow {
    
    // Initializer to perform TF's InitMain initialization.
    // InitMain also performs flag parsing and '--' is used to separate flags passed
    // to it: Flags before the first '--' are parsed by InitMain and argc and argv
    // progressed to the flags post. If there is no separator, then no flags are
    // parsed by InitMain and argc/argv left unadjusted.
    class InitMlir {
     public:
      InitMlir(int *argc, char ***argv);
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 15 11:55:20 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. hack/testdata/sorted-pods/sorted-pod3.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod3
      creationTimestamp: "2018-08-30T14:10:53Z"
      labels:
        name: sorted-pod1-label
    spec:
      containers:
      - name: kubernetes-pause3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 223 bytes
    - Viewed (0)
  3. hack/testdata/sorted-pods/sorted-pod1.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod1
      creationTimestamp: "2018-08-30T14:10:58Z"
      labels:
        name: sorted-pod3-label
    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
  4. hack/testdata/sorted-pods/sorted-pod2.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod2
      creationTimestamp: "2018-08-30T14:10:55Z"
      labels:
        name: sorted-pod2-label
    spec:
      containers:
      - name: kubernetes-pause1
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "1G"
            cpu: "0.5"
          limits:
            memory: "2G"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 347 bytes
    - Viewed (0)
  5. test/fixedbugs/issue7867.go

    	_ = t
    	_ = t
    }
    `
    
    func main() {
    	fmt.Println("package main")
    	types := []string{
    		// These types always passed
    		"bool", "int", "rune",
    		"*int", "uintptr",
    		"float32", "float64",
    		"chan struct{}",
    		"map[string]struct{}",
    		"func()", "func(string)error",
    
    		// These types caused compilation failures
    		"complex64", "complex128",
    		"struct{}", "struct{n int}", "struct{e error}", "struct{m map[string]string}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 825 bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java

        /**
         * The repository that raised this error, can be {@code null}.
         */
        private Repository repository;
    
        /**
         * Creates a new exception with specified detail message and cause for the given repository.
         *
         * @param message The detail message, may be {@code null}.
         * @param repository The repository that caused the error, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/sync/pool_test.go

    	slices.Sort(pauses)
    	var total uint64
    	for _, ns := range pauses {
    		total += ns
    	}
    	// ns/op for this benchmark is average STW time.
    	b.ReportMetric(float64(total)/float64(b.N), "ns/op")
    	b.ReportMetric(float64(pauses[len(pauses)*95/100]), "p95-ns/STW")
    	b.ReportMetric(float64(pauses[len(pauses)*50/100]), "p50-ns/STW")
    }
    
    func BenchmarkPoolExpensiveNew(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/kubelet/config/http.go

    	if bytes.Equal(data, s.data) {
    		return nil
    	}
    	s.data = data
    
    	// First try as it is a single pod.
    	parsed, pod, singlePodErr := tryDecodeSinglePod(data, s.applyDefaults)
    	if parsed {
    		if singlePodErr != nil {
    			// It parsed but could not be used.
    			return singlePodErr
    		}
    		s.updates <- kubetypes.PodUpdate{Pods: []*v1.Pod{pod}, Op: kubetypes.SET, Source: kubetypes.HTTPSource}
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    		return cMatch.Name == cluster.Name
    	}
    
    	direction, subset, hostname, port := model.ParseSubsetKey(cluster.Name)
    
    	hostMatches := []host.Name{hostname}
    	// For inbound clusters, host parsed from subset key will be empty. Use the passed in service name.
    	if direction == model.TrafficDirectionInbound && len(hosts) > 0 {
    		hostMatches = hosts
    	}
    
    	if cMatch.Subset != "" && cMatch.Subset != subset {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/util/hosts.go

    	scope, fqdn := s.GetScopeAndFqdn()
    	fn := GetFullNameFromFQDN(fqdn)
    	return scope == "*" || scope == "." && ns == fn.Namespace.String() || scope == ns
    }
    
    // NewScopedFqdn converts the passed host to FQDN if needed and applies the passed scope.
    func NewScopedFqdn(scope string, namespace resource.Namespace, host string) ScopedFqdn {
    	fqdn := ConvertHostToFQDN(namespace, host)
    	return ScopedFqdn(scope + "/" + fqdn)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top