Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for inspectors (0.42 sec)

  1. istioctl/pkg/precheck/precheck.go

    	var fromCompatibilityVersion string
    	// cmd represents the upgradeCheck command
    	cmd := &cobra.Command{
    		Use:   "precheck",
    		Short: "Check whether Istio can safely be installed or upgraded",
    		Long:  `precheck inspects a Kubernetes cluster for Istio install and upgrade requirements.`,
    		Example: `  # Verify that Istio can be installed or upgraded
      istioctl x precheck
    
      # Check only a single namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    ==== Runtime classpath normalization
    
    Similar to compile avoidance, Gradle also understands the concept of a runtime classpath, and uses tailored input normalization to avoid running e.g. tests.
    For runtime classpaths Gradle inspects the contents of jar files and ignores the timestamps and order of the entries in the jar file.
    This means that a rebuilt jar file would be considered the same runtime classpath input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. src/runtime/HACKING.md

    While running on the system stack, the current user stack is not used
    for execution.
    
    nosplit functions
    -----------------
    
    Most functions start with a prologue that inspects the stack pointer
    and the current G's stack bound and calls `morestack` if the stack
    needs to grow.
    
    Functions can be marked `//go:nosplit` (or `NOSPLIT` in assembly) to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs_test.go

    			t.Errorf("RepoRootForImportPath(%q) = VCS(%s) Repo(%s), want VCS(%s) Repo(%s)", test.path, got.VCS, got.Repo, want.VCS, want.Repo)
    		}
    	}
    }
    
    // Test that vcs.FromDir correctly inspects a given directory and returns the
    // right VCS and repo directory.
    func TestFromDir(t *testing.T) {
    	tempDir := t.TempDir()
    
    	for _, vcs := range vcsList {
    		for r, root := range vcs.RootNames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    // “synchronizes before” f(x), so in general a finalizer should use a mutex
    // or other synchronization mechanism if it needs to access mutable state in x.
    // For example, consider a finalizer that inspects a mutable field in x
    // that is modified from time to time in the main program before x
    // becomes unreachable and the finalizer is invoked.
    // The modifications in the main program and the inspection in the finalizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/func.go

    		return false
    	}
    	fn := n.Fun.(*Name).Sym()
    	return (fn.Name == "FuncPCABI0" || fn.Name == "FuncPCABIInternal") &&
    		fn.Pkg.Path == "internal/abi"
    }
    
    // IsIfaceOfFunc inspects whether n is an interface conversion from a direct
    // reference of a func. If so, it returns referenced Func; otherwise nil.
    //
    // This is only usable before walk.walkConvertInterface, which converts to an
    // OMAKEFACE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/value.go

    func (lv *ListValue) Type() ref.Type {
    	return types.ListType
    }
    
    // Value returns the Go-native value.
    func (lv *ListValue) Value() interface{} {
    	return lv
    }
    
    // finalizeValueSet inspects the ListValue entries in order to make internal optimizations once all list
    // entries are known.
    func (lv *ListValue) finalizeValueSet() {
    	valueSet := make(map[ref.Val]struct{})
    	for _, e := range lv.Entries {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/symtab.go

    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	shouldBeInSymbolTable := func(s loader.Sym) bool {
    		if ldr.AttrNotInSymbolTable(s) {
    			return false
    		}
    		// FIXME: avoid having to do name inspections here.
    		// NB: the restrictions below on file local symbols are a bit
    		// arbitrary -- if it turns out we need nameless static
    		// symbols they could be relaxed/removed.
    		sn := ldr.SymName(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/inject.go

    	}
    	container.Env = envVars
    }
    
    // GetProxyIDs returns the UID and GID to be used in the RunAsUser and RunAsGroup fields in the template
    // Inspects the namespace metadata for hints and fallbacks to the usual value of 1337.
    func GetProxyIDs(namespace *corev1.Namespace) (uid int64, gid int64) {
    	uid = constants.DefaultProxyUIDInt
    	gid = constants.DefaultProxyUIDInt
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. src/net/http/response_test.go

    				"Www-Authenticate": {`Basic realm=""`},
    			},
    			Close:         true,
    			ContentLength: -1,
    		},
    		"Your Authentication failed.\r\n",
    	},
    }
    
    // tests successful calls to ReadResponse, and inspects the returned Response.
    // For error cases, see TestReadResponseErrors below.
    func TestReadResponse(t *testing.T) {
    	for i, tt := range respTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top