Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 209 for bland (0.04 sec)

  1. src/cmd/go/internal/script/engine.go

    			sectionStart = time.Now()
    			if err != nil {
    				return lineErr(err)
    			}
    			continue
    		}
    
    		cmd, err := parse(file, lineno, line)
    		if cmd == nil && err == nil {
    			continue // Ignore blank lines.
    		}
    		s.Logf("> %s\n", line)
    		if err != nil {
    			return lineErr(err)
    		}
    
    		// Evaluate condition guards.
    		ok, err := e.conditionsActive(s, cmd.conds)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/endtoend_test.go

    		}
    		if len(output) > 0 && output[0] == want {
    			output = output[1:]
    		} else {
    			t.Errorf("missing output: %q", want)
    		}
    	}
    	for len(output) > 0 {
    		if output[0] == "" {
    			// spurious blank caused by Split on "\n"
    			output = output[1:]
    			continue
    		}
    		t.Errorf("unexpected output: %q", output[0])
    		output = output[1:]
    	}
    
    	// Checked printing.
    	// Now check machine code layout.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/lease.go

    func NewLeases(config *storagebackend.ConfigForResource, baseKey string, leaseTime time.Duration) (Leases, error) {
    	// note that newFunc, newListFunc and resourcePrefix
    	// can be left blank unless the storage.Watch method is used
    	leaseStorage, destroyFn, err := storagefactory.Create(*config, nil, nil, "")
    	if err != nil {
    		return nil, fmt.Errorf("error creating storage factory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/options.go

    	o.Authentication.TolerateInClusterLookupFailure = true
    	o.Authentication.RemoteKubeConfigFileOptional = true
    	o.Authorization.RemoteKubeConfigFileOptional = true
    
    	// Set the PairName but leave certificate directory blank to generate in-memory by default
    	o.SecureServing.ServerCert.CertDirectory = ""
    	o.SecureServing.ServerCert.PairName = "kube-scheduler"
    	o.SecureServing.BindPort = kubeschedulerconfig.DefaultKubeSchedulerPort
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/obj.go

    				// On Linux, in a cgo binary we may get a SIGSETXID signal early on
    				// before the signal stack is set, as glibc doesn't allow us to block
    				// SIGSETXID. So a signal may land on the current stack and clobber
    				// the content below the SP. We store the LR again after the SP is
    				// decremented.
    				q = obj.Appendp(q, newprog)
    				q.As = mov
    				q.Pos = p.Pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. go.mod

    	github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
    	github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
    	github.com/beorn7/perks v1.0.1 // indirect
    	github.com/blang/semver/v4 v4.0.0 // indirect
    	github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
    	github.com/chai2010/gettext-go v1.0.2 // indirect
    	github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/runtime/slice_test.go

    // the slice must be referred to by address;
    // using a global is an easy way to trigger that.
    // We test the "grow" and "no grow" paths separately,
    // but not the "normal" (occasionally grow) path,
    // because it is a blend of the other two.
    // We use small numbers and small sizes in an attempt
    // to avoid benchmarking memory allocation and copying.
    // We use scalars instead of pointers in an attempt
    // to avoid benchmarking the write barriers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 09:45:44 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    func NewPeerEndpointLeaseReconciler(config *storagebackend.ConfigForResource, baseKey string, leaseTime time.Duration) (PeerEndpointLeaseReconciler, error) {
    	// note that newFunc, newListFunc and resourcePrefix
    	// can be left blank unless the storage.Watch method is used
    	leaseStorage, destroyFn, err := storagefactory.Create(*config, nil, nil, "")
    	if err != nil {
    		return nil, fmt.Errorf("error creating storage factory: %v", err)
    	}
    	var once sync.Once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    they must appear near the top of the file, preceded
    only by blank lines and other comments. These rules mean that in Go
    files a build constraint must appear before the package clause.
    
    To distinguish build constraints from package documentation,
    a build constraint should be followed by a blank line.
    
    A build constraint comment is evaluated as an expression containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/go/doc/reader.go

    	}
    	return
    }
    
    // readType processes a type declaration.
    func (r *reader) readType(decl *ast.GenDecl, spec *ast.TypeSpec) {
    	typ := r.lookupType(spec.Name.Name)
    	if typ == nil {
    		return // no name or blank name - ignore the type
    	}
    
    	// A type should be added at most once, so typ.decl
    	// should be nil - if it is not, simply overwrite it.
    	typ.decl = decl
    
    	// compute documentation
    	doc := spec.Doc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top