Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 104 for toGetter (0.13 sec)

  1. src/go/types/issues_test.go

    			}
    		}
    		return buf.String()
    	}
    
    	// The *Func (method) definitions for package p must be the same
    	// independent on whether f1 and f2 are type-checked together, or
    	// incrementally.
    
    	// type-check together
    	var conf Config
    	info := &Info{Defs: make(map[*ast.Ident]Object)}
    	check := NewChecker(&conf, fset, NewPackage("", "p"), info)
    	if err := check.Files([]*ast.File{f1, f2}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. tests/integration/security/reachability_test.go

    					expectCrossNetwork: never,
    					expectSuccess:      always,
    				},
    
    				// --------start of auto mtls partial test cases ---------------
    				// The follow three consecutive test together ensures the auto mtls works as intended
    				// for sidecar migration scenario.
    				{
    					name: "migration no tls",
    					configs: config.Sources{
    						config.File("testdata/reachability/global-peer-authn.yaml.tmpl"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token.go

    		"print-join-command", false, "Instead of printing only the token, print the full 'kubeadm join' flag needed to join the cluster using the token.")
    	createCmd.Flags().StringVar(&certificateKey,
    		options.CertificateKey, "", "When used together with '--print-join-command', print the full 'kubeadm join' flag needed to join the cluster as a control-plane. To create a new certificate key you must use 'kubeadm init phase upload-certs --upload-certs'.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/issues_test.go

    			}
    		}
    		return buf.String()
    	}
    
    	// The *Func (method) definitions for package p must be the same
    	// independent on whether f1 and f2 are type-checked together, or
    	// incrementally.
    
    	// type-check together
    	var conf Config
    	info := &Info{Defs: make(map[*syntax.Name]Object)}
    	check := NewChecker(&conf, NewPackage("", "p"), info)
    	if err := check.Files([]*syntax.File{f1, f2}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

    // Graph based bridge in the TPUCompile op kernel.
    bool CanInlineFunctionsPostLegalization(llvm::StringRef device_type) {
      return device_type == DEVICE_TPU_XLA_JIT;
    }
    
    // These passes are grouped together and must run in this specific order.
    void AddLegalizationPasses(mlir::OpPassManager& pm, bool legalize_chlo,
                               llvm::StringRef device_type, bool enable_op_fallback,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  6. src/embed/embed.go

    	//	q/r     # dir=q    elem=r
    	//	q/s/    # dir=q    elem=s
    	//	q/v     # dir=q    elem=v
    	//	q/s/t   # dir=q/s  elem=t
    	//	q/s/u   # dir=q/s  elem=u
    	//
    	// This order brings directory contents together in contiguous sections
    	// of the list, allowing a directory read to use binary search to find
    	// the relevant sequence of entries.
    	files *[]file
    }
    
    // split splits the name into dir and elem as described in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/testing/testserver.go

    	"k8s.io/kubernetes/test/utils/ktesting"
    
    	"k8s.io/kubernetes/cmd/kube-apiserver/app"
    	"k8s.io/kubernetes/cmd/kube-apiserver/app/options"
    )
    
    func init() {
    	// If instantiated more than once or together with other servers, the
    	// servers would try to modify the global logging state. This must get
    	// ignored during testing.
    	logsapi.ReapplyHandling = logsapi.ReapplyHandlingIgnoreUnchanged
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/runtime/mbarrier.go

    // ptr is the value that goes into the slot in Go code.
    //
    // Shade indicates that it has seen a white pointer by adding the referent
    // to wbuf as well as marking it.
    //
    // The two shades and the condition work together to prevent a mutator
    // from hiding an object from the garbage collector:
    //
    // 1. shade(*slot) prevents a mutator from hiding an object by moving
    // the sole pointer to it from the heap to its stack. If it attempts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    	// turns most operations on IPs into arithmetic and bit-twiddling
    	// operations on 64-bit registers, which is much faster than
    	// bytewise processing.
    	addr uint128
    
    	// Details about the address, wrapped up together and canonicalized.
    	z unique.Handle[addrDetail]
    }
    
    // addrDetail represents the details of an Addr, like address family and IPv6 zone.
    type addrDetail struct {
    	IsV6   bool   // IPv4 is false, IPv6 is true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// as described in https://github.com/kubernetes/enhancements/tree/master/keps/sig-api-machinery/956-watch-bookmark#proposal
    	ProgressNotify bool
    	// SendInitialEvents, when set together with Watch option,
    	// begin the watch stream with synthetic init events to build the
    	// whole state of all resources followed by a synthetic "Bookmark"
    	// event containing a ResourceVersion after which the server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top