Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for subfolder (0.81 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                }
    
                File[] subfolders = location.listFiles(File::isDirectory);
                if (subfolders != null) {
                    for(File subfolder : subfolders) {
                        if (new File(subfolder, MAC_OS_JAVA_HOME_FOLDER).exists()) {
                            return new File(subfolder, MAC_OS_JAVA_HOME_FOLDER);
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager.go

    				LongName:           cert.LongName,
    				FileName:           cert.BaseName,
    				CAName:             ca.Name,
    				CABaseName:         ca.BaseName, // Nb. this is a path for etcd certs (they are stored in a subfolder)
    				readwriter:         pkiReadWriter,
    				certConfigMutators: certConfigMutators,
    			}
    		}
    
    		pkiReadWriter := newPKICertificateReadWriter(rm.cfg.CertificatesDir, ca.BaseName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	currentManifestPath := pathMgr.RealManifestPath(component)
    	// The new, upgraded manifest will be written here
    	newManifestPath := pathMgr.TempManifestPath(component)
    	// The old manifest will be moved here; into a subfolder of the temporary directory
    	// If a rollback is needed, these manifests will be put back to where they where initially
    	backupManifestPath := pathMgr.BackupManifestPath(component)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/archive/tar/writer_test.go

    			t.Fatalf("test %d, String() = %q, want %q", i, got, wantStr)
    		}
    	}
    }
    
    func TestWriterAddFS(t *testing.T) {
    	fsys := fstest.MapFS{
    		"file.go":              {Data: []byte("hello")},
    		"subfolder/another.go": {Data: []byte("world")},
    	}
    	var buf bytes.Buffer
    	tw := NewWriter(&buf)
    	if err := tw.AddFS(fsys); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  5. pkg/config/validation/envoyfilter/envoyfilter_test.go

    										Name:      "random",
    										SubFilter: &networking.EnvoyFilter_ListenerMatch_SubFilterMatch{},
    									},
    								},
    							},
    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_REMOVE,
    					},
    				},
    			},
    		}, error: "Envoy filter: subfilter match can be used with applyTo HTTP_FILTER only"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/config/validation/envoyfilter/envoyfilter.go

    								errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: subfilter match requires filter match with %s", // nolint: stylecheck
    									wellknown.HTTPConnectionManager))
    								continue
    							}
    							if listenerMatch.FilterChain.Filter.SubFilter.Name == "" {
    								errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: subfilter match has no name to match on")) // nolint: stylecheck
    								continue
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. cmd/data-scanner.go

    	dataScannerCompactAtFolders      = dataScannerCompactAtChildren / 4 // Compact when this many subfolders in a single folder.
    	dataScannerForceCompactAtFolders = 250_000                          // Compact when this many subfolders in a single folder (even top level).
    	dataScannerStartDelay            = 1 * time.Minute                  // Time to wait on startup and between cycles.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    	match := lp.Match.GetListener().FilterChain.Filter.SubFilter
    	return match != nil
    }
    
    // We assume that the parent listener and filter chain, and network filter have already been matched
    func httpFilterMatch(filter *hcm.HttpFilter, lp *model.EnvoyFilterConfigPatchWrapper) bool {
    	if !hasHTTPFilterMatch(lp) {
    		return true
    	}
    
    	match := lp.Match.GetListener().FilterChain.Filter.SubFilter
    
    	return match.Name == filter.Name
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top