Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for subdir2 (0.15 sec)

  1. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            buildFile << """
                apply plugin: "groovy"
                ${mavenCentralRepository()}
                compileGroovy {
                    groovyOptions.with {
                        stubDir = file("\$buildDir/classes/stub")
                        keepStubs = true
                    }
                }
            """
    
            if (java) {
                file("src/main/groovy/Java.java") << java
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top