Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for myHost (0.24 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    		cancel()
    		m.Merge(&mRemote)
    		for idx, host := range m.Hosts {
    			m.Hosts[idx] = anonAddr(host)
    		}
    		for host, metrics := range m.ByHost {
    			m.ByHost[anonAddr(host)] = metrics
    			delete(m.ByHost, host)
    		}
    		return &m
    	}
    
    	anonymizeCmdLine := func(cmdLine string) string {
    		if anonParam != anonymizeStrict {
    			return cmdLine
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      PredOpTrait<"operand " # n # " is at most " # m # "-D",
        TFL_OperandHasRankAtMostPred<n, m>>;
    
    // Not all dimentions in the tensor will contribute to the data move in a
    // TransposeOp. Effective rank is the number of dimentions != 1
    class TFL_TransposeOperandHasEffectiveRankAtMost<int n, int m> :
      PredOpTrait<"operand " # n # " is at most " # m # "-D",
        Or<[TFL_OperandIsUnrankedPred<n>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    }
    
    func (t dsnConnector) Driver() driver.Driver {
    	return t.driver
    }
    
    // OpenDB opens a database using a [driver.Connector], allowing drivers to
    // bypass a string based data source name.
    //
    // Most users will open a database via a driver-specific connection
    // helper function that returns a [*DB]. No database drivers are included
    // in the Go standard library. See https://golang.org/s/sqldrivers for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    						}},
    					},
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		`spec.successPolicy.rules[0].succeededIndexes: Too long: must have at most 65536 bytes`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:       validGeneratedSelector,
    					CompletionMode: completionModePtr(batch.IndexedCompletion),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// send error codes or 1xx informational responses.
    	//
    	// The provided code must be a valid HTTP 1xx-5xx status code.
    	// Any number of 1xx headers may be written, followed by at most
    	// one 2xx-5xx header. 1xx headers are sent immediately, but 2xx-5xx
    	// headers may be buffered. Use the Flusher interface to send
    	// buffered data. The header map is cleared when 2xx-5xx headers are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			name: "allOf.items",
    			obj: map[string]interface{}{
    				"myList": []interface{}{"value", "value2"},
    			},
    			errors: []string{
    				`must be value2 or not value`,
    				`len must be 5`,
    			},
    			schema: &schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    					"myList": {
    						Generic: schema.Generic{
    							Type: "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *   <li>by combining the results of several input steps.
     * </ul>
     *
     * Each derivation can capture the next value or any intermediate objects for later closing.
     *
     * <p>A step can be the input to at most one derived step. Once you transform its value, catch its
     * exception, or combine it with others, you cannot do anything else with it, including declare it
     * to be the last step of the pipeline.
     *
     * <h4>Transforming</h4>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // QrOp
    //===----------------------------------------------------------------------===//
    
    // Verifies that,
    //
    // * Input type, if ranked, must have at least 2 dimensions and at most
    //   INT32_MAX dimensions.
    //
    LogicalResult QrOp::verify() {
      QrOp op = *this;
      auto ttype = op.getInput().getType().cast<TensorType>();
      if (!ttype.hasRank()) return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top