Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 101 for inspectors (0.32 sec)

  1. 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)
  2. 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 (1)
  3. 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)
  4. src/net/http/transfer.go

    func (br *byteReader) Read(p []byte) (n int, err error) {
    	if br.done {
    		return 0, io.EOF
    	}
    	if len(p) == 0 {
    		return 0, nil
    	}
    	br.done = true
    	p[0] = br.b
    	return 1, io.EOF
    }
    
    // transferWriter inspects the fields of a user-supplied Request or Response,
    // sanitizes them without changing the user object and provides methods for
    // writing the respective header, body and trailer in wire format.
    type transferWriter struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcs/vcs.go

    	check          func(match map[string]string) error // additional checks
    	schemelessRepo bool                                // if true, the repo pattern lacks a scheme
    }
    
    // FromDir inspects dir and its parents to determine the
    // version control system and code repository to use.
    // If no repository is found, FromDir returns an error
    // equivalent to os.ErrNotExist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    ier.sh","kids":[],"cl_weight":0.3333333333333333,"touches":1,"min_t":1284401448,"max_t":1284401448,"mean_t":1284401448},{"name":"test","kids":[{"name":"reference_build","kids":[{"name":"chrome_linux","kids":[{"name":"resources","kids":[{"name":"inspector","kids":[{"name":"Images","kids":[{"name":"disclosureTriangleSm.png","kids":[],"cl_weight":0.0011574074074074073,"touches":1,"min_t":1252097274,"max_t":1252097274,"mean_t":1252097274},{"name":"statusbarBottomBackg.png","kids":[],"cl_weight":0.00...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    * Handle image digests in node status and image GC ([#25088](https://github.com/kubernetes/kubernetes/pull/25088), [@ncdc](https://github.com/ncdc))
    * PLEG: reinspect pods that failed prior inspections ([#25077](https://github.com/kubernetes/kubernetes/pull/25077), [@ncdc](https://github.com/ncdc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    		return err
    	}
    	if err := os.MkdirAll(kl.getPodPluginsDir(uid), 0750); err != nil && !os.IsExist(err) {
    		return err
    	}
    	return nil
    }
    
    // getPullSecretsForPod inspects the Pod and retrieves the referenced pull
    // secrets.
    func (kl *Kubelet) getPullSecretsForPod(pod *v1.Pod) []v1.Secret {
    	pullSecrets := []v1.Secret{}
    	failedPullSecrets := []string{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

          rolling forward.
          The status has moved from annotation key
          `pods.beta.kubernetes.io/init-container-statuses` to
          `pods.beta.kubernetes.io/init-container-statuses`.
        * Any code that inspects this annotation should be changed to use the new key.
          State of Initialization will continue to be reported in both pods.alpha.kubernetes.io/initialized
          and in `podStatus.conditions.{status: "True", type: Initialized}`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.17.md

    - Limit the body length of exec readiness/liveness probes. remote CRIs and Docker shim read a max of 16MB output of which the exec probe itself inspects 10kb. ([#82514](https://github.com/kubernetes/kubernetes/pull/82514), [@dims](https://github.com/dims))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
Back to top