Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for subdir (0.32 sec)

  1. hack/lib/init.sh

    # Where output goes.  We should avoid redefining these anywhere else.
    #
    # KUBE_OUTPUT: the root directory (absolute) where this build should drop any
    #     files (subdirs are encouraged).
    # KUBE_OUTPUT_BIN: the directory in which compiled binaries will be placed,
    #     under OS/ARCH specific subdirs
    # THIS_PLATFORM_BIN: a symlink to the output directory for binaries built for
    #     the current host platform (e.g. build/test tools).
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            Pattern pattern = Pattern.compile(Pattern.quote(name) + "-\\d.*\\.jar");
            if (gradleInstallation != null) {
                for (File libDir : gradleInstallation.getLibDirs()) {
                    for (File file : libDir.listFiles()) {
                        if (pattern.matcher(file.getName()).matches()) {
                            return file;
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/volume/util/atomic_writer_test.go

    			},
    			payload2: map[string]FileProjection{
    				"foo.txt": {Mode: 0644, Data: []byte("foo")},
    			},
    			expected: sets.New[string]("zip/bar.txt", "zip"),
    		},
    		{
    			name: "subdirs 1",
    			payload1: map[string]FileProjection{
    				"foo.txt":         {Mode: 0644, Data: []byte("foo")},
    				"zip/zap/bar.txt": {Mode: 0644, Data: []byte("zip/bar")},
    			},
    			payload2: map[string]FileProjection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/test/framework/suite.go

    	scopes.Framework.Infof("===============================")
    
    	// Ensure that the work dir is set.
    	if err := os.MkdirAll(settings.RunDir(), os.ModePerm); err != nil {
    		return fmt.Errorf("error creating rundir %q: %v", settings.RunDir(), err)
    	}
    	scopes.Framework.Infof("Test run dir: %v", settings.RunDir())
    
    	rt, err = newRuntime(settings, environmentFactory, s.labels)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			cert:     "/etc/ssl/certs/my-etcd.crt",
    			key:      "/etc/ssl/certs/my-etcd.key",
    			vol:      []v1.Volume{},
    			volMount: []v1.VolumeMount{},
    		},
    		{
    			name:     "Should ignore files in subdirs of /etc/ssl/certs",
    			ca:       "/etc/ssl/certs/etcd/my-etcd-ca.crt",
    			cert:     "/etc/ssl/certs/etcd/my-etcd.crt",
    			key:      "/etc/ssl/certs/etcd/my-etcd.key",
    			vol:      []v1.Volume{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

        }
    
        /**
         * Creates a directory structure specified by the given closure.
         * <pre>
         * dir.create {
         *     subdir1 {
         *        file 'somefile.txt'
         *     }
         *     subdir2 { nested { file 'someFile' } }
         * }
         * </pre>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    		ctxt.Logf("loadinternal: cannot find %s\n", name)
    		return nil
    	}
    
    	for _, libdir := range ctxt.Libdir {
    		if ctxt.linkShared {
    			shlibname := filepath.Join(libdir, name+".shlibname")
    			if ctxt.Debugvlog != 0 {
    				ctxt.Logf("searching for %s.a in %s\n", name, shlibname)
    			}
    			if _, err := os.Stat(shlibname); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. pkg/test/framework/suitecontext.go

    	traces       sync.Map
    }
    
    func newSuiteContext(s *resource.Settings, envFn resource.EnvironmentFactory, labels label.Set) (*suiteContext, error) {
    	scopeID := fmt.Sprintf("[suite(%s)]", s.TestID)
    
    	workDir := path.Join(s.RunDir(), "_suite_context")
    	if err := os.MkdirAll(workDir, os.ModePerm); err != nil {
    		return nil, err
    	}
    	c := &suiteContext{
    		settings:     s,
    		globalScope:  newScope(scopeID, nil),
    		workDir:      workDir,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		name                     string
    		createKubeConfigFunction func(outDir string, cfg *kubeadmapi.InitConfiguration) error
    		expectedFiles            []string
    		expectedError            bool
    	}{
    		{ // Test createKubeConfigFiles fails for unknown kubeconfig is requested
    			name: "createKubeConfigFiles",
    			createKubeConfigFunction: func(outDir string, cfg *kubeadmapi.InitConfiguration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    						Items: []core.KeyToPath{{
    							Key:  "key",
    							Path: "filename",
    							Mode: utilpointer.Int32(0644),
    						}},
    					},
    				},
    			},
    		}, {
    			name: "valid Secret with subdir projection",
    			vol: core.Volume{
    				Name: "secret",
    				VolumeSource: core.VolumeSource{
    					Secret: &core.SecretVolumeSource{
    						SecretName: "my-secret",
    						Items: []core.KeyToPath{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top