Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 318 for Builtin (3.67 sec)

  1. pkg/kubeapiserver/options/authentication_test.go

    				Steps:    5,
    			},
    		},
    		TokenSuccessCacheTTL: 10 * time.Second,
    		TokenFailureCacheTTL: 0 * time.Second,
    	}
    
    	opts := NewBuiltInAuthenticationOptions().WithAll()
    	pf := pflag.NewFlagSet("test-builtin-authentication-opts", pflag.ContinueOnError)
    	opts.AddFlags(pf)
    
    	if err := pf.Parse(args); err != nil {
    		t.Fatal(err)
    	}
    
    	if !opts.OIDC.areFlagsConfigured() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. test/return.go

    func _() int {
    	print(1)
    	return 2
    }
    
    // goto is okay
    func _() int {
    L:
    	print(1)
    	goto L
    }
    
    // panic is okay
    func _() int {
    	print(1)
    	panic(2)
    }
    
    // but only builtin panic
    func _() int {
    	var panic = func(int) {}
    	print(1)
    	panic(2)
    } // ERROR "missing return"
    
    // block ending in terminating statement is okay
    func _() int {
    	{
    		print(1)
    		return 2
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                               : BufferOffset<flatbuffers::String>();
        // Use version 0 for builtin op. This is a way to serialize version field to
        // flatbuffer (since 0 is non default) and it will be corrected later.
        int32_t op_version = builtin != tflite::BuiltinOperator_CUSTOM ? 0 : 1;
        opcodes_.push_back(CreateOperatorCode(builder_, /*builtin_code=*/builtin,
                                              custom_code, op_version));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/html/template/url.go

    	// The byte loop below assumes that all URLs use UTF-8 as the
    	// content-encoding. This is similar to the URI to IRI encoding scheme
    	// defined in section 3.1 of  RFC 3987, and behaves the same as the
    	// EcmaScript builtin encodeURIComponent.
    	// It should not cause any misencoding of URLs in pages with
    	// Content-type: text/html;charset=UTF-8.
    	for i, n := 0, len(s); i < n; i++ {
    		c := s[i]
    		switch c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    	check.rawExpr(T, x, e, nil, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    // genericExpr is like expr but the result may also be generic.
    func (check *Checker) genericExpr(x *operand, e ast.Expr) {
    	check.rawExpr(nil, x, e, nil, true)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/dec.rules

    // Copyright 2016 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 contains rules to decompose builtin compound types
    // (complex,string,slice,interface) into their constituent
    // types.  These rules work together with the decomposeBuiltIn
    // pass which handles phis of these types.
    
    (Store {t} _ _ mem) && t.Size() == 0 => mem
    
    // complex ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

    bool lower_tensor_list_ops;
    bool strip_debug_info;
    bool use_buffer_offset;
    bool emit_stablehlo_ops;
    bool disable_vhlo_to_stablehlo;
    
    // NOLINTNEXTLINE
    static opt<bool, true> emit_builtin_tflite_ops_flag(
        "emit-builtin-tflite-ops",
        llvm::cl::desc(
            "Emit TFLite built in operations in the generated TFLite model"),
        llvm::cl::location(emit_builtin_tflite_ops), llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/func.go

    	if l.Op() == ir.ONAME && l.(*ir.Name).BuiltinOp != 0 {
    		l := l.(*ir.Name)
    		if n.IsDDD && l.BuiltinOp != ir.OAPPEND {
    			base.Errorf("invalid use of ... with builtin %v", l)
    		}
    
    		// builtin: OLEN, OCAP, etc.
    		switch l.BuiltinOp {
    		default:
    			base.Fatalf("unknown builtin %v", l)
    
    		case ir.OAPPEND, ir.ODELETE, ir.OMAKE, ir.OMAX, ir.OMIN, ir.OPRINT, ir.OPRINTLN, ir.ORECOVER:
    			n.SetOp(l.BuiltinOp)
    			n.Fun = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typexpr.go

    		}
    		check.addDeclDep(obj)
    		if !isValid(typ) {
    			return
    		}
    		x.mode = variable
    
    	case *Func:
    		check.addDeclDep(obj)
    		x.mode = value
    
    	case *Builtin:
    		x.id = obj.id
    		x.mode = builtin
    
    	case *Nil:
    		x.mode = nilvalue
    
    	default:
    		panic("unreachable")
    	}
    
    	x.typ = typ
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/collateral/control.go

    		# "compopt +-o nospace" is used in the code to toggle trailing
    		# spaces. We don't support that, but leave trailing spaces on
    		# all the time
    		if [ "$1" = "__istio_compopt" ]; then
    			echo builtin
    			return 0
    		fi
    	fi
    	type "$@"
    }
    __istio_compgen() {
    	local completions w
    	completions=( $(compgen "$@") ) || return $?
    	# filter by given word as prefix
    	while [[ "$1" = -* && "$1" != -- ]]; do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top