Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,210 for examine (0.48 sec)

  1. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // permission of the volume before being mounted.
      // Refer to the specific FSGroupPolicy values for additional details.
      //
      // This field is immutable.
      //
      // Defaults to ReadWriteOnceWithFSType, which will examine each volume
      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    	// Refer to the specific FSGroupPolicy values for additional details.
    	//
    	// This field was immutable in Kubernetes < 1.29 and now is mutable.
    	//
    	// Defaults to ReadWriteOnceWithFSType, which will examine each volume
    	// to determine if Kubernetes should modify ownership and permissions of the volume.
    	// With the default policy the defined fsGroup will only be applied
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1/generated.proto

      // permission of the volume before being mounted.
      // Refer to the specific FSGroupPolicy values for additional details.
      //
      // This field is immutable.
      //
      // Defaults to ReadWriteOnceWithFSType, which will examine each volume
      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    				return v.Op == OpInitMem
    			}
    		}
    
    		// Examine the prolog portion of the block to process special
    		// zero-width ops such as Arg, Phi, LoweredGetClosurePtr (etc)
    		// whose lifetimes begin at the block starting point. In an
    		// entry block, allow for the possibility that we may see Arg
    		// ops that appear _after_ other non-zero-width operations.
    		// Example:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/parser.go

    func (p *parser) parseUnquotedString() string {
    	if p.tok == scanner.EOF {
    		p.error("unexpected EOF")
    	}
    	var b strings.Builder
    	b.WriteString(p.scanner.TokenText())
    	// This loop needs to examine each character before deciding whether to consume it. If we see a semicolon,
    	// we need to let it be consumed by p.next().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    	Fossil      .fossil
    	Git         .git
    	Mercurial   .hg
    	Subversion  .svn
    
    For example,
    
    	import "example.org/user/foo.hg"
    
    denotes the root directory of the Mercurial repository at
    example.org/user/foo or foo.hg, and
    
    	import "example.org/repo.git/foo/bar"
    
    denotes the foo/bar directory of the Git repository at
    example.org/repo or repo.git.
    
    When a version control system supports multiple protocols,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	// fileHasSamplesAndMatched is for optimization to speed up pprof: when later
    	// walking through the profile mappings, it will only examine the ones that have
    	// samples and are matched to the regexp.
    	fileHasSamplesAndMatched := make(map[string]bool)
    	for _, n := range g.Nodes {
    		if name := n.Info.PrintableName(); rx.MatchString(name) && n.Info.Objfile != "" {
    			fileHasSamplesAndMatched[n.Info.Objfile] = true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    // 	  module), or
    // 	- the package is in "all" and the definition of "all" we are using includes
    // 	  dependencies of tests (as is the case in Go ≤1.15).
    //
    // After all available packages have been loaded, we examine the results to
    // identify any requested or imported packages that are still missing, and if
    // so, which modules we could add to the module graph in order to make the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/regexp/regexp.go

    // from a RuneReader:
    //
    //	MatchReader, FindReaderIndex, FindReaderSubmatchIndex
    //
    // This set may grow. Note that regular expression matches may need to
    // examine text beyond the text returned by a match, so the methods that
    // match text from a RuneReader may read arbitrarily far into the input
    // before returning.
    //
    // (There are a few other methods that do not match this pattern.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    	Note that the arguments are for "gcc", not "ld".
    
    	Example:
    	//go:cgo_ldflag "-lpthread"
    	//go:cgo_ldflag "-L/usr/local/sqlite3/lib"
    
    A package compiled with cgo will include directives for both
    internal and external linking; the linker will select the appropriate
    subset for the chosen linking mode.
    
    Example
    
    As a simple example, consider a package that uses cgo to call C.sin.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top