Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for ello (0.15 sec)

  1. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.Labels = map[string]string{
    					"hello-world": badValue,
    				}
    				return claim
    			}(),
    		},
    		"good-annotations": {
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_shim_test.go

    		}
    
    		var tlsConn *Conn
    		if *server {
    			tlsConn = Server(conn, cfg)
    		} else {
    			tlsConn = Client(conn, cfg)
    		}
    
    		if i == 0 && *shimWritesFirst {
    			if _, err := tlsConn.Write([]byte("hello")); err != nil {
    				log.Fatalf("write err: %s", err)
    			}
    		}
    
    		for {
    			buf := make([]byte, 500)
    			var n int
    			n, err = tlsConn.Read(buf)
    			if err != nil {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. tests/scan_test.go

    		UIntField:         1,
    		UInt8Field:        1,
    		UInt16Field:       1,
    		UInt32Field:       1,
    		UInt64Field:       1,
    		Float32Field:      1.1,
    		Float64Field:      1.1,
    		StringField:       "hello",
    		TimeField:         currTime,
    		TimePtrField:      &currTime,
    		EmbeddedStruct:    EmbeddedStruct{EmbeddedIntField: 1, NestedEmbeddedStruct: NestedEmbeddedStruct{NestedEmbeddedIntField: 1, NestedEmbeddedIntFieldWithDefault: 2}},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.ReferencedResourceNotFound, "VirtualService istio-system/cross-namespace-details"},
    			{msg.ReferencedResourceNotFound, "VirtualService hello/hello-export-to-bogus"},
    		},
    	},
    	{
    		name:       "virtualServiceDestinationRules",
    		inputFiles: []string{"testdata/virtualservice_destinationrules.yaml"},
    		analyzer:   &virtualservice.DestinationRuleAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

                  request_handle:headers():add("x-lua-inbound", "hello world")
                end
      - applyTo: VIRTUAL_HOST
        match:
          context: SIDECAR_INBOUND
        patch:
          operation: MERGE
          value:
            request_headers_to_add:
            - header:
                key: x-vhost-inbound
                value: "hello world"
      - applyTo: CLUSTER
        match:
          context: SIDECAR_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

              public void run() {
                AbstractFuture<String> future = setFutureFuture.get();
                setFutureSetSuccess.set(currentFuture.get().setFuture(future));
                setFutureCompletionSuccess.set(future.set("hello-async-world"));
                awaitUnchecked(barrier);
              }
            };
        final Set<Object> finalResults = Collections.synchronizedSet(Sets.newIdentityHashSet());
        Runnable collectResultsRunnable =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. cmd/bucket-handlers_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	var err error
    
    	sha256sum := ""
    	var objectNames []string
    	for i := 0; i < 10; i++ {
    		contentBytes := []byte("hello")
    		objectName := "test-object-" + strconv.Itoa(i)
    		if i == 0 {
    			objectName += "/"
    			contentBytes = []byte{}
    		}
    		// uploading the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

         * ---
         *
         * Why not just always provide null for name references? In such case, the following case would be a problem:
         *
         * ```kt
         * fun usage(action: String.(Int) -> String) {
         *   "hello".<expr>action</expr>(10)
         * }
         * ```
         *
         * The user might want to know the type of the `action` callback. If we always return null for the named references,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. internal/grid/benchmark_test.go

    					n := 0
    					var latency int64
    					managers := grid.Managers
    					hosts := grid.Hosts
    					req := testRequest{
    						Num:    rng.Int(),
    						String: "hello",
    					}
    					for pb.Next() {
    						// Pick a random manager.
    						src, dst := rng.Intn(len(managers)), rng.Intn(len(managers))
    						if src == dst {
    							dst = (dst + 1) % len(managers)
    						}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

              public void run() {
                AbstractFuture<String> future = setFutureFuture.get();
                setFutureSetSuccess.set(currentFuture.get().setFuture(future));
                setFutureCompletionSuccess.set(future.set("hello-async-world"));
                awaitUnchecked(barrier);
              }
            };
        final Set<Object> finalResults = Collections.synchronizedSet(Sets.newIdentityHashSet());
        Runnable collectResultsRunnable =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top