Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,422 for examine (0.25 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. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  5. 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)
  6. pkg/apis/storage/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: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. doc/asm.html

    <p>
    Constants are of the form <code>const_<i>name</i></code>.
    For example, given the Go declaration <code>const bufSize =
    1024</code>, assembly code can refer to the value of this constant
    as <code>const_bufSize</code>.
    </p>
    
    <p>
    Field offsets are of the form <code><i>type</i>_<i>field</i></code>.
    Struct sizes are of the form <code><i>type</i>__size</code>.
    For example, consider the following Go definition:
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top