Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for tcCall (0.08 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				})
    				objType = withRule(objType, "self.str.replace(self.before, self.after) == 'does not matter'")
    				return &objType
    			},
    			expectedCalcCost: 629154, // cost is based on the result size of the replace() call
    			setMaxElements:   4,
    			expectedSetCost:  12,
    		},
    		{
    			name: "extended library split",
    			schemaGenerator: func(max *int64) *schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    	// Any tuple with a memory type must put that memory type second.
    }
    
    // Results are the output from calls that will be late-expanded.
    type Results struct {
    	Types []*Type // Last element is memory output from call.
    }
    
    // Array contains Type fields specific to array types.
    type Array struct {
    	Elem  *Type // element type
    	Bound int64 // number of elements; <0 if unknown yet
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    }
    
    // SetSessionTicketKeys updates the session ticket keys for a server.
    //
    // The first key will be used when creating new tickets, while all keys can be
    // used for decrypting tickets. It is safe to call this function while the
    // server is running in order to rotate the session ticket keys. The function
    // will panic if keys is empty.
    //
    // Calling this function will turn off automatic session ticket key rotation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncorrectSQLFunctionArgumentType: {
    		Code:           "IncorrectSqlFunctionArgumentType",
    		Description:    "Incorrect type of arguments in function call in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrValueParseFailure: {
    		Code:           "ValueParseFailure",
    		Description:    "Time stamp parse failure in the SQL expression.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/types2/expr.go

    		*syntax.InterfaceType, *syntax.MapType, *syntax.ChanType:
    		x.mode = typexpr
    		x.typ = check.typ(e)
    		// Note: rawExpr (caller of exprInternal) will call check.recordTypeAndValue
    		// even though check.typ has already called it. This is fine as both
    		// times the same expression and type are recorded. It is also not a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            when:
            addToGraph(entry1)
            executionPlan.determineExecutionPlan() // this is called between entry groups for an included build (but not the root build) and this call triggers the issue
            addToGraph(entry2)
    
            then:
            noExceptionThrown()
        }
    
        def "runs priority node before other nodes even when scheduled later"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
          GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
    
    // An all-mode assert to verify that the given POSIX-style function
    // call returns 0 (indicating success).  Known limitation: this
    // doesn't expand to a balanced 'if' statement, so enclose the macro
    // in {} if you need to use it as the only statement in an 'if'
    // branch.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	// roughly below 20 KB. Exported for tests
    	MaxUncountedPods = 500
    	// MaxPodCreateDeletePerSync is the maximum number of pods that can be
    	// created or deleted in a single sync call. Exported for tests.
    	MaxPodCreateDeletePerSync = 500
    )
    
    // Controller ensures that all Job objects have corresponding pods to
    // run their configured workload.
    type Controller struct {
    	kubeClient clientset.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            }
        }
    
        private static <T> Supplier<T> asSupplier(Callable<T> supplier) {
            return () -> {
                try {
                    return supplier.call();
                } catch (Exception e) {
                    uncheckedThrow(e);
                    return null;
                }
            };
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      PassManager pm(ctx);
      // Intermediate output from QuantizePass will have PartitionedCall ops with
      // quantized input and output types, which are not allowed in TF dialect.
      // This can be removed when the composite call supports quantized types.
      pm.enableVerifier(false);
    
      QuantizationSpecs quant_specs;
      quant_specs.inference_type = tensorflow::DT_QINT8;
      quant_specs.disable_per_channel = !enable_per_channel_quantization_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top