Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,309 for inNode (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ArtifactHandlerExtensionsTest.kt

                    when (invocation.getArgument<String>(0)) {
                        "configName" -> firstConfiguredArtifact.also(action::invoke)
                        "string-invoke" -> secondConfiguredArtifact.also(action::invoke)
                        else -> null
                    }
                }
            }
            val artifacts = ArtifactHandlerScope.of(artifactHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istioctl/kube.go

    		// set it to low timeout to reduce impact
    		if out, stderr, err := c.Invoke([]string{"x", "wait", "-v", "--timeout=5s", cfg.GroupVersionKind.Kind, cfg.Name + "." + ns}); err != nil {
    			return fmt.Errorf("wait: %v\nout: %v\nerr: %v", err, out, stderr)
    		}
    	}
    	return nil
    }
    
    // Invoke implements Instance
    func (c *kubeComponent) Invoke(args []string) (string, string, error) {
    	cmdArgs := append([]string{
    		"--kubeconfig",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/encoding/gob/timing_test.go

    	enc := NewEncoder(&buf)
    	bench := &Bench{7, 3.2, "now is the time", []byte("for all good men")}
    
    	allocs := testing.AllocsPerRun(N, func() {
    		err := enc.Encode(bench)
    		if err != nil {
    			t.Fatal("encode:", err)
    		}
    	})
    	if allocs != 0 {
    		t.Fatalf("mallocs per encode of type Bench: %v; wanted 0\n", allocs)
    	}
    }
    
    func TestCountDecodeMallocs(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 07:16:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. src/encoding/gob/example_test.go

    	dec := gob.NewDecoder(&network) // Will read from network.
    
    	// Encode (send) some values.
    	err := enc.Encode(P{3, 4, 5, "Pythagoras"})
    	if err != nil {
    		log.Fatal("encode error:", err)
    	}
    	err = enc.Encode(P{1782, 1841, 1922, "Treehouse"})
    	if err != nil {
    		log.Fatal("encode error:", err)
    	}
    
    	// Decode (receive) and print the values.
    	var q Q
    	err = dec.Decode(&q)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  5. src/image/png/writer_test.go

    			i := 0
    			for y := 0; y < height; y++ {
    				for x := 0; x < width; x++ {
    					m0.SetColorIndex(x, y, uint8(i%tc.plen))
    					i++
    				}
    			}
    
    			// Encode the image
    			var b bytes.Buffer
    			if err := Encode(&b, m0); err != nil {
    				t.Error(err)
    				return
    			}
    			const chunkFieldsLength = 12 // 4 bytes for length, name and crc
    			data := b.Bytes()
    			i = len(pngHeader)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 14 08:14:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  6. cmd/last-minute_gen_test.go

    func TestEncodeDecodeAccElem(t *testing.T) {
    	v := AccElem{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    
    	m := v.Msgsize()
    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodeAccElem Msgsize() is inaccurate")
    	}
    
    	vn := AccElem{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    	err = msgp.NewReader(&buf).Skip()
    	if err != nil {
    		t.Error(err)
    	}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jul 05 21:45:49 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  7. cmd/batch-expire_gen_test.go

    	v := BatchJobExpire{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    
    	m := v.Msgsize()
    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodeBatchJobExpire Msgsize() is inaccurate")
    	}
    
    	vn := BatchJobExpire{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    	err = msgp.NewReader(&buf).Skip()
    	if err != nil {
    		t.Error(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/Bundling.java

     * <ul>
     *     <li>{@code external}, the default, where dependencies, if any, are found transitively</li>
     *     <li>{@code embedded}, where dependencies are found inside the component, but using the same namespace as the original dependencies</li>
     *     <li>{@code shadowed}, where dependencies are found inside the component, but within a different namespace to avoid name clashes</li>
     * </ul>
     * <p>
     * As a practical example, let's consider the Java ecosystem:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  9. hack/e2e-node-test.sh

    # The "true" target of this makerule is `hack/make-rules/test-e2e-node.sh`.
    
    # This script runs `make test-e2e-node` command.
    # The command builds and runs node end-to-end tests.
    # Args:
    #  FOCUS: Regexp that matches the tests to be run.  Defaults to "".
    #  SKIP: Regexp that matches the tests that needs to be skipped.  Defaults
    # Usage: `hack/e2e-node-test.sh `.
    # Example: `hack/e2e-node-test.sh FOCUS=Kubelet SKIP=container`.
    
    set -o errexit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. .github/workflows/mint/nginx-1-node.conf

    Harshavardhana <******@****.***> 1680298690 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top