Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for vers (0.37 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// If set, DestroyFunc has to be implemented in thread-safe way and
    	// be prepared for being called more than once.
    	DestroyFunc func()
    }
    
    // Note: the rest.StandardStorage interface aggregates the common REST verbs
    var _ rest.StandardStorage = &Store{}
    var _ rest.TableConvertor = &Store{}
    var _ GenericStore = &Store{}
    
    var _ rest.SingularNameProvider = &Store{}
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    		informers.Core().V1().Pods(),
    		client,
    		burstReplicas,
    	)
    
    	ret.podListerSynced = alwaysReady
    	ret.rsListerSynced = alwaysReady
    
    	return ret, informers
    }
    
    func skipListerFunc(verb string, url url.URL) bool {
    	if verb != "GET" {
    		return false
    	}
    	if strings.HasSuffix(url.Path, "/pods") || strings.Contains(url.Path, "/replicasets") {
    		return true
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    #  - Always use single-quoted strings unless actually interpolating variables
    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      for (Node* node : (*options.graph)->nodes()) {
        bool has_ref_vars = ref_related_nodes.contains(node);
        node->AddAttr(kXlaHasReferenceVarsAttr, has_ref_vars);
        VLOG(3) << "Has ref vars = " << has_ref_vars
                << ", node: " << node->def().DebugString();
      }
      return absl::OkStatus();
    }
    
    bool IsXlaCompiledKernel(const Node& node) {
      bool is_compiled = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/TypeToken.java

       *       the upper bound is implicitly an Enum too).
       *   <li>If {@code canonicalize(A) == canonicalize(B)}, then {@code Foo<A>.isSubtypeOf(Foo<B>)}
       *       and vice versa. i.e. {@code A.is(B)} and {@code B.is(A)}.
       *   <li>{@code canonicalize(canonicalize(A)) == canonicalize(A)}.
       * </ol>
       */
      private static Type canonicalizeTypeArg(TypeVariable<?> declaration, Type typeArg) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    	errOp := x  // operand for which error is reported, if any
    	cause := "" // specific error cause, if any
    
    	// spec: "In any comparison, the first operand must be assignable
    	// to the type of the second operand, or vice versa."
    	code := MismatchedTypes
    	ok, _ := x.assignableTo(check, y.typ, nil)
    	if !ok {
    		ok, _ = y.assignableTo(check, x.typ, nil)
    	}
    	if !ok {
    		// Report the error on the 2nd operand since we only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		fatalf("internal error: writeOutput: srcfile contains unexpected newline character: %q", srcfile)
    	}
    	fmt.Fprintf(fgo1, "//line %s:1:1\n", srcfile)
    	fgo1.Write(f.Edit.Bytes())
    
    	// While we process the vars and funcs, also write gcc output.
    	// Gcc output starts with the preamble.
    	fmt.Fprintf(fgcc, "%s\n", builtinProlog)
    	fmt.Fprintf(fgcc, "%s\n", f.Preamble)
    	fmt.Fprintf(fgcc, "%s\n", gccProlog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (c dwctxt) RecordDclReference(s dwarf.Sym, t dwarf.Sym, dclIdx int, inlIndex int) {
    	panic("should be used only in the compiler")
    }
    
    func (c dwctxt) RecordChildDieOffsets(s dwarf.Sym, vars []*dwarf.Var, offsets []int32) {
    	panic("should be used only in the compiler")
    }
    
    func isDwarf64(ctxt *Link) bool {
    	return ctxt.HeadType == objabi.Haix
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error)
    //sys	ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) [failretval<=32] = shell32.ShellExecuteW
    //sys	GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) = user32.GetWindowThreadProcessId
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    func (l *Loader) LookupOrCreateSym(name string, ver int) Sym {
    	i := l.Lookup(name, ver)
    	if i != 0 {
    		return i
    	}
    	i = l.newExtSym(name, ver)
    	static := ver >= sym.SymVerStatic || ver < 0
    	if static {
    		l.extStaticSyms[nameVer{name, ver}] = i
    	} else {
    		l.symsByName[ver][name] = i
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top