Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for haninge (0.13 sec)

  1. src/testing/testing.go

    //	            t.Errorf("Marshal: %v", err)
    //	        }
    //	    })
    //	}
    //
    // # Subtests and Sub-benchmarks
    //
    // The Run methods of T and B allow defining subtests and sub-benchmarks,
    // without having to define separate functions for each. This enables uses
    // like table-driven benchmarks and creating hierarchical tests.
    // It also provides a way to share common setup and tear-down code:
    //
    //	func TestFoo(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    throw new IllegalStateException(String.format("%s implements %s but is not declared as a service of this type. This service is declared as having type %s.", serviceProvider.getDisplayName(), AnnotatedServiceLifecycleHandler.class.getSimpleName(), format(serviceType)));
                }
                if (instance instanceof AnnotatedServiceLifecycleHandler) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    					break
    				}
    			}
    		}
    	}
    
    	// It boils down to a tradeoff between:
    	// - having it as small as possible to reduce memory usage
    	// - having it large enough to ensure that watchers that need to process
    	//   a bunch of changes have enough buffer to avoid from blocking other
    	//   watchers on our watcher having a processing hiccup
    	chanSize := c.watchCache.suggestedWatchChannelSize(c.indexedTrigger != nil, triggerSupported)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle_test.go

    			inputConfig: `<LifecycleConfiguration>
    		                          </LifecycleConfiguration>`,
    			expectedParsingErr:    nil,
    			expectedValidationErr: errLifecycleNoRule,
    		},
    		{ // lifecycle config with rules having overlapping prefix
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// using the controller and we hold sleepRatio at a conservative
    	// value. Used if the controller's assumptions fail to hold.
    	controllerCooldown int64
    
    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    	// Unlike the other stubs, this is not populated if left nil
    	// Instead, it is called when non-nil because any valid implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	}
    	return env
    }
    
    var toolchain = []string{"cmd/asm", "cmd/cgo", "cmd/compile", "cmd/link", "cmd/preprofile"}
    
    // The bootstrap command runs a build from scratch,
    // stopping at having installed the go_bootstrap command.
    //
    // WARNING: This command runs after cmd/dist is built with the Go bootstrap toolchain.
    // It rebuilds and installs cmd/dist with the new toolchain, so other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    // the loser's time being added to the "additional contention" field. Otherwise
    // if the M's call stack buffer is occupied, it does the comparison against that
    // sample's magnitude.
    //
    // Second, having unlocked a mutex the M checks to see if it should capture the
    // call stack into its local buffer. Finally, when the M unlocks its last mutex,
    // it transfers the local buffer into the profile. As part of that step, it also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	}
    
    	// Convert map to list.
    	var result []*kubecontainer.Pod
    	for _, pod := range pods {
    		result = append(result, pod)
    	}
    
    	// There are scenarios where multiple pods are running in parallel having
    	// the same name, because one of them have not been fully terminated yet.
    	// To avoid unexpected behavior on container name based search (for example
    	// by calling *Kubelet.findContainer() without specifying a pod ID), we now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //    values: S1,S2
      //    topologyKey: "kubernetes.io/hostname"
      //  This pod anti-affinity rule says that the pod requires not to be scheduled
      //  onto a node if that node is already running a pod with label having key
      //  “security” and value “S1”.
      repeated k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector podAntiAffinityLabelSelector = 12 [deprecated = true];
    
      // See PodAntiAffinityLabelSelector.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/go/build/build.go

    				return errNoModules
    			}
    		} else {
    			parent, err = filepath.Abs(ctxt.Dir)
    			if err != nil {
    				// If the caller passed a bogus Dir explicitly, that's materially
    				// different from not having modules enabled.
    				return err
    			}
    		}
    		for {
    			if f, err := ctxt.openFile(ctxt.joinPath(parent, "go.mod")); err == nil {
    				buf := make([]byte, 100)
    				_, err := f.Read(buf)
    				f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top