Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for predefined (0.35 sec)

  1. src/internal/zstd/fse.go

    			basebits := matchLengthBase[idx]
    			be.baseline = basebits & 0xffffff
    			be.basebits = uint8(basebits >> 24)
    		}
    		baselineTable[i] = be
    	}
    	return nil
    }
    
    // predefinedLiteralTable is the predefined table to use for literal lengths.
    // Generated from table in RFC 3.1.1.3.2.2.1.
    // Checked by TestPredefinedTables.
    var predefinedLiteralTable = [...]fseBaselineEntry{
    	{0, 0, 4, 0}, {0, 0, 4, 16}, {1, 0, 5, 32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. pkg/apis/scheduling/validation/validation.go

    	allErrs = append(allErrs, apivalidation.ValidateObjectMeta(&pc.ObjectMeta, false, apimachineryvalidation.NameIsDNSSubdomain, field.NewPath("metadata"))...)
    	// If the priorityClass starts with a system prefix, it must be one of the
    	// predefined system priority classes.
    	if strings.HasPrefix(pc.Name, scheduling.SystemPriorityClassPrefix) {
    		if is, err := schedulingapiv1.IsKnownSystemPriorityClass(pc.Name, pc.Value, pc.GlobalDefault); !is {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/handler.go

    )
    
    // ReadyFunc is a function that returns true if the admission controller is ready to handle requests.
    type ReadyFunc func() bool
    
    // Handler is a base for admission control handlers that
    // support a predefined set of operations
    type Handler struct {
    	operations sets.String
    	readyFunc  ReadyFunc
    }
    
    // Handles returns true for methods that this handler supports
    func (h *Handler) Handles(operation Operation) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/flags/flags.go

    }
    
    var (
    	D        MultiFlag
    	I        MultiFlag
    	PrintOut int
    	DebugV   bool
    )
    
    func init() {
    	flag.Var(&D, "D", "predefined symbol with optional simple value -D=identifier=value; can be set multiple times")
    	flag.Var(&I, "I", "include directory; can be set multiple times")
    	flag.BoolVar(&DebugV, "v", false, "print debug output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenModule.groovy

         */
        MavenModule variant(String variant, Map<String, String> attributes, @DelegatesTo(value= VariantMetadataSpec, strategy=Closure.DELEGATE_FIRST) Closure<?> variantConfiguration)
    
        /**
         * Clears all predefined variants
         */
        MavenModule adhocVariants()
    
        String getPublishArtifactVersion()
    
        String getGroupId()
    
        String getArtifactId()
    
        String getVersion()
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    	}
    	for _, test := range [...]struct {
    		desc, input, output string
    	}{
    		// covering issue 20323
    		{
    			"field with predefined escaper name 1",
    			`{{.html | print}}`,
    			`&lt;h1&gt;Hi!&lt;/h1&gt;`,
    		},
    		// covering issue 20323
    		{
    			"field with predefined escaper name 2",
    			`{{.urlquery | print}}`,
    			`http://www.foo.com/index.html?title=main`,
    		},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

    def TFL_AFAttr : TFL_AnyStrAttrOf<[
          TFL_AFEnum_None.symbol,  TFL_AFEnum_Relu.symbol, TFL_AFEnum_Relu1.symbol,
          TFL_AFEnum_Relu6.symbol, TFL_AFEnum_Tanh.symbol, TFL_AFEnum_Sign.symbol
        ]>;
    
    // Predefined constant attributes of activation function
    def TFL_AF_None  : ConstantStrAttr<TFL_AFAttr, TFL_AFEnum_None.symbol>;
    def TFL_AF_Relu  : ConstantStrAttr<TFL_AFAttr, TFL_AFEnum_Relu.symbol>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/universe.go

    		NewField(src.NoXPos, nil, Types[TSTRING]),
    	})
    	method := NewField(src.NoXPos, LocalPkg.Lookup("Error"), sig)
    	return NewInterface([]*Field{method})
    }
    
    // makeComparableInterface makes the predefined "comparable" interface in the
    // built-in package. It has a unique name, but no methods.
    func makeComparableInterface() *Type {
    	return NewInterface(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_lift_quantizable_spots_as_functions_with_quantization_specs.cc

      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(
          TestLiftQuantizableSpotsAsFunctionsWithQuantizationSpecsPass)
    
     private:
      void runOnOperation() override;
    };
    
    // `TestQuantizationSpecs` -> predefined `QuantizationSpecs` textproto.
    absl::string_view GetQuantizationSpecsTextProto(
        const TestQuantizationSpecs test_specs) {
      switch (test_specs) {
        case TestQuantizationSpecs::kEmpty:
          return kSpecsEmpty;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/internal/goobj/mkbuiltin.go

    			log.Fatal("unhandled decl type", decl)
    		}
    	}
    
    	// The list above only contains ones that are used by the frontend.
    	// The backend may create more references of builtin functions.
    	// We also want to include predefined types.
    	// Add them.
    	extras := append(fextras[:], enumerateBasicTypes()...)
    	for _, b := range extras {
    		prefix := ""
    		if !strings.HasPrefix(b.name, "type:") {
    			prefix = pkg + "."
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top