Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for makefile (0.19 sec)

  1. pkg/bootstrap/instance_test.go

    	if err != nil {
    		return nil, err
    	}
    	cfg := &meshconfig.ProxyConfig{}
    
    	err = prototext.Unmarshal(content, cfg)
    	if err != nil {
    		return nil, err
    	}
    
    	// Exported from makefile or env
    	cfg.ConfigPath = filepath.Join(out, "/bootstrap/", base)
    	cfg.CustomConfigFile = filepath.Join(env.IstioSrc, "/tools/packaging/common/envoy_bootstrap.json")
    	if cfg.StatusPort == 0 {
    		cfg.StatusPort = 15020
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pkg/volume/hostpath/host_path_test.go

    	isFile          bool
    	isSocket        bool
    	isBlock         bool
    	isChar          bool
    	validpathType   []*v1.HostPathType
    	invalidpathType []*v1.HostPathType
    }
    
    func (ftc *fakeHostPathTypeChecker) MakeFile() error { return nil }
    func (ftc *fakeHostPathTypeChecker) MakeDir() error  { return nil }
    func (ftc *fakeHostPathTypeChecker) Exists() bool    { return ftc.exists }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. build/common.sh

    # *_OUTPUT_BINPATH - location where final binaries are placed.  If the remote
    #                    is really remote, this is the stuff that has to be copied
    #                    back.
    # OUT_DIR can come in from the Makefile, so honor it.
    readonly LOCAL_OUTPUT_ROOT="${KUBE_ROOT}/${OUT_DIR:-_output}"
    readonly LOCAL_OUTPUT_SUBPATH="${LOCAL_OUTPUT_ROOT}/dockerized"
    readonly LOCAL_OUTPUT_BINPATH="${LOCAL_OUTPUT_SUBPATH}/bin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

           [ "${target}" = "vendor/github.com/onsi/ginkgo/ginkgo" ]; then
          # Aliases that build the ginkgo CLI for hack/ginkgo-e2e.sh.
          # "ginkgo" is the one that is documented in the Makefile. The others
          # are for backwards compatibility.
          echo "github.com/onsi/ginkgo/v2/ginkgo"
          continue
        fi
    
        if [[ "${target}" =~ ^([[:alnum:]]+".")+[[:alnum:]]+"/" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. src/cmd/pack/pack_test.go

    }
    
    // Reset prepares a FakeFile for reuse.
    func (f *FakeFile) Reset() *FakeFile {
    	f.offset = 0
    	return f
    }
    
    // FileLike methods.
    
    func (f *FakeFile) Name() string {
    	// A bit of a cheat: we only have a basename, so that's also ok for FileInfo.
    	return f.name
    }
    
    func (f *FakeFile) Stat() (fs.FileInfo, error) {
    	return f, nil
    }
    
    func (f *FakeFile) Read(p []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            output.contains "value: original"
    
            when:
            waitBeforeModification(markerFile)
            markerFile.text = "changed"
    
            then:
            buildTriggeredAndSucceeded()
            output.contains "value: changed"
        }
    
        def "can recover from build failure"() {
            given:
            def markerFile = file("input/marker")
            file("inputFile").createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. pkg/controller/certificates/signer/signer.go

    	caFile, caKeyFile string,
    	certTTL time.Duration,
    ) (*CSRSigningController, error) {
    	return NewCSRSigningController(ctx, "csrsigning-kube-apiserver-client", capi.KubeAPIServerClientSignerName, client, csrInformer, caFile, caKeyFile, certTTL)
    }
    
    func NewLegacyUnknownCSRSigningController(
    	ctx context.Context,
    	client clientset.Interface,
    	csrInformer certificatesinformers.CertificateSigningRequestInformer,
    	caFile, caKeyFile string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. security/pkg/pki/util/keycertbundle_test.go

    func TestCertOptionsAndRetrieveID(t *testing.T) {
    	testCases := map[string]struct {
    		caCertFile    string
    		caKeyFile     string
    		certChainFile []string
    		rootCertFile  string
    		certOptions   *CertOptions
    		expectedErr   string
    	}{
    		"No SAN RSA": {
    			caCertFile:    rootCertFile,
    			caKeyFile:     rootKeyFile,
    			certChainFile: nil,
    			rootCertFile:  rootCertFile,
    			certOptions: &CertOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    func (f fakeFile) Mode() fs.FileMode  { return f.real.Mode() }
    func (f fakeFile) ModTime() time.Time { return f.real.ModTime() }
    func (f fakeFile) IsDir() bool        { return f.real.IsDir() }
    func (f fakeFile) Sys() any           { return f.real.Sys() }
    
    func (f fakeFile) String() string {
    	return fs.FormatFileInfo(f)
    }
    
    // missingFile provides an fs.FileInfo for an overlaid file where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

            }
    
            val pointersWithRendered = executeOnPooledThreadInReadAction {
                analyseForTest(mainFile) {
                    val (symbols, symbolForPrettyRendering) = collectSymbols(mainFile, testServices)
    
                    checkContainingFiles(symbols, mainFile, testServices)
    
                    val pointerWithRenderedSymbol = symbols
                        .asSequence()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top