Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 561 for yearly (0.15 sec)

  1. pkg/kubelet/kuberuntime/labels.go

    	return ""
    }
    
    func getIntValueFromLabel(labels map[string]string, label string) (int, error) {
    	if strValue, found := labels[label]; found {
    		intValue, err := strconv.Atoi(strValue)
    		if err != nil {
    			// This really should not happen. Just set value to 0 to handle this abnormal case
    			return 0, err
    		}
    		return intValue, nil
    	}
    	// Do not report error, because there should be many old containers without label now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandlerTest.groovy

            when:
            def result = dependencyHandler.someConf("someNotation") { because "It's really important" }
    
            then:
            result == dependency
    
            and:
            1 * dependencyFactory.createDependency("someNotation") >> dependency
            1 * dependencySet.add(dependency)
            1 * dependency.because("It's really important")
        }
    
        void "can use dynamic method to add multiple dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 10:37:21 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/go/build/build_test.go

    // There should be valid partial information in the returned non-nil *Package.
    func TestImportDirNotExist(t *testing.T) {
    	testenv.MustHaveGoBuild(t) // really must just have source
    	ctxt := Default
    
    	emptyDir := t.TempDir()
    
    	ctxt.GOPATH = emptyDir
    	ctxt.Dir = emptyDir
    
    	tests := []struct {
    		label        string
    		path, srcDir string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_en.properties

    labels.facet_timestamp_1week=Past Week
    labels.facet_timestamp_1month=Past Month
    labels.facet_timestamp_1year=Past Year
    labels.facet_timestamp_3month=Past 3 Months
    labels.facet_timestamp_6month=Past 6 Months
    labels.facet_timestamp_2year=Past 2 Years
    labels.facet_timestamp_3year=Past 3 Years
    labels.facet_contentLength_title=Size
    labels.facet_contentLength_10k=  - 10kb
    labels.facet_contentLength_10kto100k=10kb - 100kb
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/compile.go

    }
    
    // list of passes for the compiler
    var passes = [...]pass{
    	{name: "number lines", fn: numberLines, required: true},
    	{name: "early phielim and copyelim", fn: copyelim},
    	{name: "early deadcode", fn: deadcode}, // remove generated dead code to avoid doing pointless work during opt
    	{name: "short circuit", fn: shortcircuit},
    	{name: "decompose user", fn: decomposeUser, required: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    	ProxyIPAddresses []string
    
    	// Envoy status port (that circles back to the agent status port). Really belongs to the proxy config.
    	// Cannot be eradicated because mistakes have been made.
    	EnvoyStatusPort int
    
    	// Envoy prometheus port that circles back to its admin port for prom endpoint. Really belongs to the
    	// proxy config.
    	EnvoyPrometheusPort int
    
    	MinimumDrainDuration time.Duration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    		t.Error(err)
    	}
    
    	// Let all hanging requests finish
    	block.Done()
    
    	// Show that we recover from being blocked up.
    	// Too avoid flakyness we need to wait until at least one of the requests really finishes.
    	responses.Wait()
    	if err := expectHTTPGet(server.URL, http.StatusOK); err != nil {
    		t.Error(err)
    	}
    }
    
    func TestMaxInFlightMutating(t *testing.T) {
    	const AllowedMutatingInflightRequestsNo = 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	// duplicate owner reference entries.
    	DuplicateOwnerReferencesWarningFormat = ".metadata.ownerReferences contains duplicate entries; API server dedups owner references in 1.20+, and may reject such requests as early as 1.24; please fix your requests; duplicate UID(s) observed: %v"
    	// DuplicateOwnerReferencesAfterMutatingAdmissionWarningFormat indicates the duplication was observed
    	// after mutating admission.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.facet_timestamp_1week=Past Week
    labels.facet_timestamp_1month=Past Month
    labels.facet_timestamp_1year=Past Year
    labels.facet_timestamp_3month=Past 3 Months
    labels.facet_timestamp_6month=Past 6 Months
    labels.facet_timestamp_2year=Past 2 Years
    labels.facet_timestamp_3year=Past 3 Years
    labels.facet_contentLength_title=Size
    labels.facet_contentLength_10k=  - 10kb
    labels.facet_contentLength_10kto100k=10kb - 100kb
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/apply.go

    // It does the following things:
    // - Checks if the cluster is healthy
    // - Gets the configuration from the kubeadm-config ConfigMap in the cluster
    // - Enforces all version skew policies
    // - Asks the user if they really want to upgrade
    // - Makes sure the control plane images are available locally on the control-plane(s)
    // - Upgrades the control plane components
    // - Applies the other resources that'd be created with kubeadm init as well, like
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top