Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for wealth (0.19 sec)

  1. pkg/printers/internalversion/printers.go

    	}
    	status := "Unknown"
    	message := ""
    	error := ""
    	for _, condition := range obj.Conditions {
    		if condition.Type == api.ComponentHealthy {
    			if condition.Status == api.ConditionTrue {
    				status = "Healthy"
    			} else {
    				status = "Unhealthy"
    			}
    			message = condition.Message
    			error = condition.Error
    			break
    		}
    	}
    	row.Cells = append(row.Cells, obj.Name, status, message, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Duchess sneezed occasionally; and as for the baby, it was
    sneezing and howling alternately without a moment's pause.  The
    only things in the kitchen that did not sneeze, were the cook,
    and a large cat which was sitting on the hearth and grinning from
    ear to ear.
    
      `Please would you tell me,' said Alice, a little timidly, for
    she was not quite sure whether it was good manners for her to
    speak first, `why your cat grins like that?'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			obj:    []interface{}{},
    			oldObj: []interface{}{},
    			schema: objectTypePtr(map[string]schema.Structural{}),
    			errors: map[string]string{
    				"authorizer.path('/healthz').check('get').allowed()": "undeclared reference to 'authorizer'",
    			},
    		},
    		{name: "optionals", // https://github.com/google/cel-spec/wiki/proposal-246
    			obj: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	var keys2 []string
    	waitCondition(t, 10*time.Millisecond, func(d time.Duration) bool {
    		keys2 = tr.IdleConnKeysForTesting()
    		if len(keys2) != 0 {
    			if d > 0 {
    				t.Logf("Transport hasn't noticed idle connection's death in %v.\nbefore: %q\n after: %q\n", d, keys1, keys2)
    			}
    			return false
    		}
    		return true
    	})
    
    	doReq("second")
    }
    
    // Test that the Transport notices when a server hangs up on its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Bitumen, Iron, Copper, and Earth, and with them compounds Allum, Vitriol, and Sulphur. With the Earth alone it compounds Allum; with the Metal alone, or Metal and Earth together, it compounds Vitriol; and with the Bitumen and Earth it compounds Sulphur. Whence it comes to pass that Markasites abound with those three Minerals. And is it not from the mutual Attraction of the Ingredients that they stick together for compounding these Minerals, and that the Bitumen carries up the other Ingredients of the Sulphur,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top