Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for bland (0.05 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// mutually exclusive properties. If one is set, the other must be unset.
    	//
    	// A single parameter used for all admission requests can be configured
    	// by setting the `name` field, leaving `selector` blank, and setting namespace
    	// if `paramKind` is namespace-scoped.
    	//
    	Name string `json:"name,omitempty" protobuf:"bytes,1,rep,name=name"`
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"math/big"
    	"net"
    	"net/url"
    	"strconv"
    	"time"
    	"unicode"
    
    	// Explicitly import these for their crypto.RegisterHash init side-effects.
    	// Keep these as blank imports, even if they're imported above.
    	_ "crypto/sha1"
    	_ "crypto/sha256"
    	_ "crypto/sha512"
    
    	"golang.org/x/crypto/cryptobyte"
    	cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Combining these two ways you can enable globally and disable for certain run configurations, or the opposite.
    
    [[config_cache:plugins]]
    == Supported plugins
    
    The configuration cache is brand new and introduces new requirements for plugin implementations.
    As a result, both core Gradle plugins, and community plugins need to be adjusted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    	// A list of authorization policies applicable to this workload.
    	// NOTE: this *only* includes Selector based policies. Namespace and global polices
    	// are returned out of band.
    	// Authorization policies are only valid for workloads with `addresses` rather than `hostname`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    	healEntry := func(bucket string, entry metaCacheEntry, scanMode madmin.HealScanMode) error {
    		if entry.isDir() {
    			return nil
    		}
    		// We might land at .metacache, .trash, .multipart
    		// no need to heal them skip, only when bucket
    		// is '.minio.sys'
    		if bucket == minioMetaBucket {
    			if wildcard.Match("buckets/*/.metacache/*", entry.name) {
    				return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	#header #toc {
    		right: initial;
    		margin-left: 64.5rem;
    	}
    
    	.site-footer__link-group {
    		flex: 0.2 1 auto;
    	}
    }
    
    
    @supports (-moz-appearance:meterbar) and (background-blend-mode:difference, normal) {
    
    	/* Firefox only */
    	.site-header__navigation-submenu-section:after {
    		top: 2px;
    		right: -4px;
    	}
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	if traceAllocFreeEnabled() {
    		trace := traceTryAcquire()
    		if trace.ok() {
    			trace.SpanAlloc(s)
    			traceRelease(trace)
    		}
    	}
    	return s
    }
    
    // initSpan initializes a blank span s which will represent the range
    // [base, base+npages*pageSize). typ is the type of span being allocated.
    func (h *mheap) initSpan(s *mspan, typ spanAllocType, spanclass spanClass, base, npages uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    			}
    
    			// Function is being used in an expression, to e.g. pass around a C function pointer.
    			// Create a new Name for this Ref which causes the variable to be declared in Go land.
    			fpName := "fp_" + r.Name.Go
    			name := f.Name[fpName]
    			if name == nil {
    				name = &Name{
    					Go:   fpName,
    					C:    r.Name.C,
    					Kind: "fpvar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top