Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 856 for paused (0.16 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. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/FileOrUriNotationConverterTest.groovy

            when:
            def parsed = parse(unsupportedURIString)
            then:
            parsed instanceof URI
        }
    
        def "does not throw NPE for URI with unknown schema"() {
            setup:
            def unsupportedURIString = new URI("no-schema")
            when:
            def parsed = parse(unsupportedURIString)
            then:
            parsed instanceof URI
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 16:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	}
    	return args, nil
    }
    
    // CommandLineToArgv parses a Unicode command line string and sets
    // argc to the number of parsed arguments.
    //
    // The returned memory should be freed using a single call to LocalFree.
    //
    // Note that although the return type of CommandLineToArgv indicates 8192
    // entries of up to 8192 characters each, the actual count of parsed arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. cmd/signature-v4-parser.go

    }
    
    // preSignValues data type represents structured form of AWS Signature V4 query string.
    type preSignValues struct {
    	signValues
    	Date    time.Time
    	Expires time.Duration
    }
    
    // Parses signature version '4' query string of the following form.
    //
    //	querystring = X-Amz-Algorithm=algorithm
    //	querystring += &X-Amz-Credential= urlencode(accessKey + '/' + credential_scope)
    //	querystring += &X-Amz-Date=date
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top