Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for subdir2 (0.16 sec)

  1. hack/lib/golang.sh

    # KUBE_OUTPUT_BIN but that won't work in the face of cross compilation.  'go
    # install' will place binaries that match the host platform directly in $GOBIN
    # while placing cross compiled binaries into `platform_arch` subdirs.  This
    # complicates pretty much everything else we do around packaging and such.
    kube::golang::place_bins() {
      local host_platform
      host_platform=$(kube::golang::host_platform)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    		return err
    	}
    
    	root, err := ca.NewRoot(certsDir)
    	if err != nil {
    		return fmt.Errorf("failed creating the root CA: %v", err)
    	}
    
    	for _, c := range i.env.Clusters() {
    		// Create a subdir for the cluster certs.
    		clusterDir := filepath.Join(certsDir, c.Name())
    		if err := os.Mkdir(clusterDir, 0o700); err != nil {
    			return err
    		}
    
    		// Create the new extensions config for the CA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    for 'xl.meta' files. Wildcards are accepted: 'testdir/*.txt' will compress
    all files in testdir ending with '.txt', directories can be wildcards
    as well. 'testdir/*/*.txt' will match 'testdir/subdir/b.txt', double stars
    means full recursive. 'testdir/**/xl.meta' will search for all xl.meta
    recursively.
    
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}
    `
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. cmd/data-scanner.go

    			wait() // wait to proceed to next entry.
    
    			return nil
    		})
    		if err != nil {
    			return err
    		}
    
    		if foundObjects && globalIsErasure {
    			// If we found an object in erasure mode, we skip subdirs (only datadirs)...
    			break
    		}
    
    		// If we have many subfolders, compact ourself.
    		shouldCompact := f.newCache.Info.Name != folder.name &&
    			len(existingFolders)+len(newFolders) >= dataScannerCompactAtFolders ||
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	// directory, the resulting ImportPath is the complete path
    	// to the package, including the path elements leading up
    	// to and including "vendor".
    	// For example, if Import("y", "x/subdir", 0) finds
    	// "x/vendor/y", the returned package's ImportPath is "x/vendor/y",
    	// not plain "y".
    	// See golang.org/s/go15vendor for more information.
    	//
    	// Setting IgnoreVendor ignores vendor directories.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    			// test packages, and all the run actions for these
    			// packages will depend on it. Motivating example:
    			// supposed we have a top level directory with three
    			// package subdirs, "a", "b", and "c", and
    			// from the top level, a user runs "go test -coverpkg=./... ./...".
    			// This will result in (roughly) the following action graph:
    			//
    			//	build("a")       build("b")         build("c")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	CoverVars         map[string]*CoverVar // variables created by coverage analysis
    	OmitDebug         bool                 // tell linker not to write debug information
    	GobinSubdir       bool                 // install target would be subdir of GOBIN
    	BuildInfo         *debug.BuildInfo     // add this info to package main
    	TestmainGo        *[]byte              // content for _testmain.go
    	Embed             map[string][]string  // //go:embed comment mapping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    							},
    						}, {
    							Path: "name",
    							FieldRef: &core.ObjectFieldSelector{
    								APIVersion: "v1",
    								FieldPath:  "metadata.name",
    							},
    						}, {
    							Path: "path/with/subdirs",
    							FieldRef: &core.ObjectFieldSelector{
    								APIVersion: "v1",
    								FieldPath:  "metadata.labels",
    							},
    						}, {
    							Path: "path/./withdot",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TensorOf<[TF_Complex128, TF_Complex64, TF_Float32, TF_Float64]>, [{Tensor of shape `[..., 1, M]`, representing subdiagonals of tri-diagonal
    matrices to the left of multiplication. First element is ignored.}]>:$subdiag,
        Arg<TensorOf<[TF_Complex128, TF_Complex64, TF_Float32, TF_Float64]>, [{Tensor of shape `[..., M, N]`, representing MxN matrices to the right of
    multiplication.}]>:$rhs
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top