Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for Region (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // resourceVersion value returned by the server and not miss any modifications.
      optional string continue = 8;
    
      // `sendInitialEvents=true` may be set together with `watch=true`.
      // In that case, the watch stream will begin with synthetic events to
      // produce the current state of objects in the collection. Once all such
      // events have been sent, a synthetic "Bookmark" event  will be sent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	})
    }
    
    // pemCRLPrefix is the magic string that indicates that we have a PEM encoded
    // CRL.
    var pemCRLPrefix = []byte("-----BEGIN X509 CRL")
    
    // pemType is the type of a PEM encoded CRL.
    var pemType = "X509 CRL"
    
    // ParseCRL parses a CRL from the given bytes. It's often the case that PEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		sym := loader.Sym(s)
    
    		fi := d.ldr.FuncInfo(sym)
    		if !fi.Valid() {
    			continue
    		}
    
    		// Skip linker-created functions (ex: runtime.addmoduledata), since they
    		// don't have DWARF to begin with.
    		unit := d.ldr.SymUnit(sym)
    		if unit == nil {
    			continue
    		}
    
    		// Update PC ranges.
    		//
    		// We don't simply compare the end of the previous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// which run an apiserver which might need to make calls to this
    	// webhook. Such installs are likely to be non-portable, i.e., not easy
    	// to turn up in a new cluster.
    	//
    	// The scheme must be "https"; the URL must begin with "https://".
    	//
    	// A path is optional, and if present may be any string permissible in
    	// a URL. You may use the path to pass an arbitrary string to the
    	// webhook, for example, a cluster identifier.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	font-style: normal;
    	src: url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff2") format("woff2"),
    		url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff") format("woff");
    }
    
    /* BEGIN asciidoc.css */
    
    /*! normalize.css v2.1.2 | MIT License | git.io/normalize */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	Continue string `json:"continue,omitempty" protobuf:"bytes,8,opt,name=continue"`
    
    	// `sendInitialEvents=true` may be set together with `watch=true`.
    	// In that case, the watch stream will begin with synthetic events to
    	// produce the current state of objects in the collection. Once all such
    	// events have been sent, a synthetic "Bookmark" event  will be sent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. src/cmd/link/internal/ld/lib.go

    // the type, they can run to many kilobytes long. So we shorten
    // them using a SHA-1 when the name appears in the final binary.
    // This also removes characters that upset external linkers.
    //
    // These are the symbols that begin with the prefix 'type.' and
    // contain run-time type information used by the runtime and reflect
    // packages. All Go binaries contain these symbols, but only
    // those programs loaded dynamically in multiple parts need these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //
    //	<braced-expression> ::= <expression>
    //	                    ::= di <field source-name> <braced-expression>
    //	                    ::= dx <index expression> <braced-expression>
    //	                    ::= dX <range begin expression> <range end expression> <braced-expression>
    func (st *state) expression() AST {
    	if len(st.str) == 0 {
    		st.fail("expected expression")
    	}
    	if st.str[0] == 'L' {
    		return st.exprPrimary()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. src/reflect/type.go

    		GCData:   gcdata,
    	}
    	s := "bucket(" + stringFor(ktyp) + "," + stringFor(etyp) + ")"
    	b.Str = resolveReflectName(newName(s, "", false, false))
    	return b
    }
    
    func (t *rtype) gcSlice(begin, end uintptr) []byte {
    	return (*[1 << 30]byte)(unsafe.Pointer(t.t.GCData))[begin:end:end]
    }
    
    // emitGCMask writes the GC mask for [n]typ into out, starting at bit
    // offset base.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top