Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for meaningful (0.76 sec)

  1. pkg/kubelet/runonce_test.go

    	// because runonce is never used in kubernetes now, we should deprioritize the cleanup work.
    	// TODO(random-liu) Fix the test, make it meaningful.
    	fakeRuntime.PodStatus = kubecontainer.PodStatus{
    		ContainerStatuses: []*kubecontainer.Status{
    			{
    				Name:  "bar",
    				State: kubecontainer.ContainerStateRunning,
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue13559.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that error messages print meaningful values
    // for various extreme floating-point constants.
    
    package p
    
    // failure case in issue
    const _ int64 = 1e-10000 // ERROR "1e\-10000 truncated|.* truncated to int64|truncated"
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  3. docs/sts/assume-role.md

    ```
    [foobar]
    region = us-east-1
    aws_access_key_id = foobar
    aws_secret_access_key = foo12345
    ```
    
    > NOTE: In the following commands `--role-arn` and `--role-session-name` are not meaningful for MinIO and can be set to any value satisfying the command line requirements.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. pkg/registry/core/resourcequota/storage/storage_test.go

    	}
    	obj, err := storage.Get(ctx, "foo", &metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	rqOut := obj.(*api.ResourceQuota)
    	// only compare the meaningful update b/c we can't compare due to metadata
    	if !apiequality.Semantic.DeepEqual(resourcequotaIn.Status, rqOut.Status) {
    		t.Errorf("unexpected object: %s", cmp.Diff(resourcequotaIn, rqOut))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     files for and see if we can't incorporate it all into the POM. Or if we do
     have properties file (something I would like to avoid) say they don't
     contribute in any meaningful way to information in the POM. For example a
     properties file could be used the specify $ so it can be interpolated in
     <developerConnection/> but you couldn't use a properties file to specify the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pilot/pkg/security/trustdomain/bundle.go

    			msg := fmt.Sprintf("Trust domain %s from principal %s does not match the current trust "+
    				"domain or its aliases", trustDomainFromPrincipal, principal)
    			// when SkipValidateTrustDomain is being used the message isn't very meaningful so we'll log it at a lower level
    			// logging it at this level may help users who are looking to disable skipping validation understand if it's safe
    			if !features.SkipValidateTrustDomain {
    				authzLog.Warn(msg)
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	// a queue it will be nil.
    	removeFromQueueLocked removeFromFIFOFunc
    
    	// arrivalR is R(arrivalTime).  R is, confusingly, also called "virtual time".
    	// This field is meaningful only while the request is waiting in the virtual world.
    	arrivalR fcrequest.SeatSeconds
    
    	// startTime is the real time when the request began executing
    	startTime time.Time
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
        }
    
        def "fails with meaningful error when requested tests not found"() {
            when:
            launchTests { TestLauncher launcher ->
                launcher.withTestsFor { TestSpecs specs ->
                    specs.forTaskPath(':test')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/syscall/exec_freebsd.go

    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    	Noctty  bool // Detach fd 0 from controlling terminal
    	Ctty    int  // Controlling TTY fd
    	// Foreground places the child process group in the foreground.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"and size is a number. This option is only meaningful for resources built into the apiserver, "+
    		"not ones defined by CRDs or aggregated from external servers, and is only consulted if the "+
    		"watch-cache is enabled. The only meaningful size setting to supply here is zero, which means to "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top