Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for Missing (0.18 sec)

  1. tests/integration/pilot/common/routing.go

    						if !ok {
    							return fmt.Errorf("missing X-Envoy-External-Address Header")
    						}
    						if err := ExpectString(externalAddress[0], "72.9.5.6", "envoy-external-address header"); err != nil {
    							return err
    						}
    						xffHeader, ok := r.RequestHeaders["X-Forwarded-For"]
    						if !ok {
    							return fmt.Errorf("missing X-Forwarded-For Header")
    						}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // `init` branches to `next`, passing along the arguments given to `init`'s
        // yield. Said arguments precede the "other args".
        n = getInitFuncOtherArgs().size();
        regions.push_back(RegionSuccessor(
            &getNext(), getNext().front().getArguments().drop_back(n)));
      } else if (point.getRegionOrNull() == &getNext()) {
        // `next` branches to itself, or to `finalize`, passing all arguments given
        // to `next`s yield.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    	}
    
    	clientETag, err := etag.FromContentMD5(r.Header)
    	if err != nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidDigest), r.URL)
    		return
    	}
    
    	// if Content-Length is unknown/missing, deny the request
    	size := r.ContentLength
    	rAuthType := getRequestAuthType(r)
    	switch rAuthType {
    	// Check signature types that must have content length
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsSearchLogCA.java

    import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 115.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // instance.
    std::optional<std::string> NcclAllReduceOp::GetResourceInstanceStr() {
      auto device_attr = (*this)->getAttrOfType<StringAttr>("device");
      // Treat missing device attribute like unspecified (= empty string) attribute.
      // Note that different op instances with the same string (including empty
      // string) are seen as dependent (same resource instance).
      if (!device_attr) return "";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    				}
    			}
    			actualConditions := obj.Status.Conditions
    			// TODO: it's ok not to sort these because statusOk
    			// contains all the conditions, so we'll never be appending.
    			// Default to statusOk when missing any specific conditions
    			if tc.expectedConditions == nil {
    				tc.expectedConditions = statusOkWithOverrides()
    			}
    			// clear the message so that we can easily compare
    			for i := range actualConditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.cc

      tf_results->return_nodes.resize(results.return_nodes.size());
      for (int i = 0; i < results.return_nodes.size(); ++i) {
        tf_results->return_nodes[i] = ToOperation(results.return_nodes[i]);
      }
    
      // Populate missing unused map keys
      DCHECK(tf_results->missing_unused_key_names.empty());
      DCHECK(tf_results->missing_unused_key_indexes.empty());
      DCHECK(tf_results->missing_unused_key_names_data.empty());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %0 = "tf.ConcatV2"(%arg, %arg, %axis) : (tensor<8x16xf32>, tensor<8x16xf32>, tensor<f32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // tf.ConcatV2 missing required 'axis' operand
    func.func @testConcatV2() -> tensor<?xf32> {
      // expected-error @+1 {{expected 1 or more operands}}
      %0 = "tf.ConcatV2"() : () -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"['a', ?optional.of('v'), 'c'] == ['a', 'v', 'c']",
    			},
    			errors: map[string]string{
    				"self.absentObj.?absentStr == optional.none()": "no such key: absentObj", // missing ?. operator on first deref is an error
    			},
    		},
    		{name: "quantity",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    			valid: []string{
    				"isQuantity(self.val1)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

          - By constraint
    
    org:leaf:1.0 -> 2.0
    \\--- org:foo:1.0
         \\--- conf
    
    org:leaf:1.4 -> 2.0
    \\--- conf
    """
        }
    
        def "shows decent failure when inputs missing"() {
            given:
            buildFile << """
                task insight(type: DependencyInsightReportTask) {
                    showingAllVariants = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top