Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 318 for Builtin (0.25 sec)

  1. src/go/types/builtins.go

    // Source: ../../cmd/compile/internal/types2/builtins.go
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements typechecking of builtin function calls.
    
    package types
    
    import (
    	"go/ast"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. cmd/admin-router.go

    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/list-canned-policies").HandlerFunc(adminMiddleware(adminAPI.ListCannedPolicies))
    
    		// Builtin IAM policy associations
    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/idp/builtin/policy-entities").HandlerFunc(adminMiddleware(adminAPI.ListPolicyMappingEntities))
    
    		// Remove policy IAM
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/credentials/resource.go

    	kubernetesGatewaySecretTypeURI = KubernetesGatewaySecretType + "://"
    	// BuiltinGatewaySecretType is the name of a SDS secret that uses the workloads own mTLS certificate
    	BuiltinGatewaySecretType    = "builtin"
    	BuiltinGatewaySecretTypeURI = BuiltinGatewaySecretType + "://"
    	// SdsCaSuffix is the suffix of the sds resource name for root CA.
    	SdsCaSuffix = "-cacert"
    )
    
    // SecretResource defines a reference to a secret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authorization_test.go

    			Duration: 500 * time.Millisecond,
    			Factor:   1.5,
    			Jitter:   0.2,
    			Steps:    5,
    		},
    	}
    
    	opts := NewBuiltInAuthorizationOptions()
    	pf := pflag.NewFlagSet("test-builtin-authorization-opts", pflag.ContinueOnError)
    	opts.AddFlags(pf)
    
    	if err := pf.Parse(args); err != nil {
    		t.Fatal(err)
    	}
    
    	if !opts.AreLegacyFlagsSet() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    		if !ok {
    			return // not a call statement
    		}
    
    		// Call to function or method?
    		fn, ok := typeutil.Callee(pass.TypesInfo, call).(*types.Func)
    		if !ok {
    			return // e.g. var or builtin
    		}
    		if sig := fn.Type().(*types.Signature); sig.Recv() != nil {
    			// method (e.g. foo.String())
    			if types.Identical(sig, sigNoArgsStringResult) {
    				if stringMethods[fn.Name()] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/builtins.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements typechecking of builtin function calls.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    )
    
    // builtin type-checks a call to the built-in specified by id and
    // reports whether the call is valid, with *x holding the result;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	resources resources
    
    	// mutex must be locked while accessing any of the fields below.
    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    	// Set in parallel during Filter, so write access there must be
    	// protected by the mutex. Used by PostFilter.
    	unavailableClaims sets.Set[int]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. test/used.go

    	T.M0                   // ERROR "T.M0 .* not used"
    	t.M0                   // ERROR "t.M0 .* not used"
    	cap                    // ERROR "use of builtin cap not in function call|must be called"
    	cap(slice)             // ERROR "cap\(slice\) .* not used"
    	close(c)               // ok
    	_ = close(c)           // ERROR "close\(c\) .*used as value"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 08:39:17 UTC 2020
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/device_canonicalize.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(func.func(canonicalize))' | FileCheck %s
    
    // Test empty launch with no results is folded away.
    // CHECK-LABEL: func @empty_launch_no_results
    func.func @empty_launch_no_results() {
      "tf_device.launch"() ({
        tf_device.return
      }) {device = "device"} : () -> ()
      func.return
    }
    
    // CHECK-NOT: tf_device.launch
    
    
    // Test empty launch with some results is folded away.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/decompose.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"sort"
    )
    
    // decompose converts phi ops on compound builtin types into phi
    // ops on simple types, then invokes rewrite rules to decompose
    // other ops on those types.
    func decomposeBuiltIn(f *Func) {
    	// Decompose phis
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
Back to top