Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for var_ (0.06 sec)

  1. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            result.output.contains "Hello world!1"
            result.output.contains "Hello world! (buildSrc)"
        }
    
        static class FileSubclass extends File {
            FileSubclass(File var1) {
                super(var1.absolutePath)
            }
        }
    
        @InspectsExecutedTasks
        def "injected classpath may contain File subclasses"() {
            given:
            buildFile << plugin.build().useDeclaration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/mirror_client_test.go

    		"bar_foo":         {Name: "bar", Namespace: "foo"},
    		"bar.org_foo.com": {Name: "bar.org", Namespace: "foo.com"},
    		"bar-bar_foo":     {Name: "bar-bar", Namespace: "foo"},
    	}
    	failedCases := []string{"barfoo", "bar_foo_foo", "", "bar_", "_foo"}
    
    	for podFullName, expected := range successfulCases {
    		name, namespace, err := kubecontainer.ParsePodFullName(podFullName)
    		if err != nil {
    			t.Errorf("unexpected error when parsing the full name: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:44:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. pkg/wasm/httpfetcher.go

    package wasm
    
    import (
    	"archive/tar"
    	"bytes"
    	"compress/gzip"
    	"context"
    	"crypto/tls"
    	"fmt"
    	"io"
    	"net/http"
    	"time"
    
    	"istio.io/istio/pkg/backoff"
    )
    
    var (
    	// Referred to https://en.wikipedia.org/wiki/Tar_(computing)#UStar_format
    	tarMagicNumber = []byte{0x75, 0x73, 0x74, 0x61, 0x72}
    	// Referred to https://en.wikipedia.org/wiki/Gzip#File_format
    	gzMagicNumber = []byte{0x1f, 0x8b}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarFileTree.java

            return tarFileProvider;
        }
    
        private File getExpandedDir() {
            File tarFile = tarFileProvider.get();
            HashCode fileHash = hashFile(tarFile);
            String expandedDirName = "tar_" + fileHash;
            return temporaryExtractionDir.newTemporaryDirectory(".cache", "expanded", expandedDirName);
        }
    
        private HashCode hashFile(File tarFile) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_distributed_test.cc

             "      input_arg {"
             "        name: 'var0'"
             "        type: DT_RESOURCE"
             "      }"
             "      output_arg {"
             "        name: 'var0_value'"
             "        type: DT_FLOAT"
             "      }"
             "    }"
             "    node_def {"
             "      name: 'read0'"
             "      op: 'ReadVariableOp'"
             "      input: 'var0'"
             "      attr {"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/go/doc/example_test.go

    func GFunc[T any]() {}
    
    type GType[T any] int
    
    func (GType[T]) M() {}
    `
    	const test = `
    package p_test
    
    func ExampleConst1() {} // invalid - no support for consts and vars
    func ExampleVar1()   {} // invalid - no support for consts and vars
    
    func Example()               {}
    func Example_()              {} // invalid - suffix must start with a lower-case letter
    func Example_suffix()        {}
    func Example_suffix_xX_X_x() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                rootProject.name = 'test'
                gradle.rootProject {
                    configurations.create('default')
                    group = 'test'
                    version = '1.0'
                    def jar = tasks.create("jar_$version", Jar) {
                        archiveBaseName = "test"
                        destinationDirectory = buildDir
                        archiveVersion = project.version
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    		size := uintptr(locals.n) * goarch.PtrSize
    		scanblock(frame.varp-size, size, locals.bytedata, gcw, state)
    	}
    
    	// Scan arguments.
    	if args.n > 0 {
    		scanblock(frame.argp, uintptr(args.n)*goarch.PtrSize, args.bytedata, gcw, state)
    	}
    
    	// Add all stack objects to the stack object list.
    	if frame.varp != 0 {
    		// varp is 0 for defers, where there are no locals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_test.cc

          CreateVariable(ctx_0, 1.2, remote_device, /*variable_name=*/"var2");
    
      // 2. Wait for `var2` to be created and initialized on the worker.
      TF_Status* status = TF_NewStatus();
      TFE_ContextAsyncWait(ctx_0, status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    
      // 3. Read `var_2` using `ctx_1`. This read should succeed since `ctx_1` was
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    	sp := getcallersp()
    	pc := getcallerpc()
    	gp := getg()
    	var n int
    	systemstack(func() {
    		var u unwinder
    		u.initAt(pc, sp, 0, gp, unwindSilentErrors)
    		n = tracebackPCs(&u, skip, pcbuf)
    	})
    	return n
    }
    
    func gcallers(gp *g, skip int, pcbuf []uintptr) int {
    	var u unwinder
    	u.init(gp, unwindSilentErrors)
    	return tracebackPCs(&u, skip, pcbuf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top