Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for makeRule (0.14 sec)

  1. tests/integration/GKE.md

    Additionally, you can also set **GS_BUCKET** to use a different Google Storage Bucket than the default one
    (you need write permissions) it allows you to customize Makefile rules.
    
    For example:
    
    ```bash
    export HUB=myname
    export TAG=latest
    export GS_BUCKET=mybucket
    ```
    
    Then you can build and push the docker images to your registry:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  2. tools/docker-builder/main.go

    		// Otherwise, build just the single item. proxyv2 is special since it is always built separately with tag=agent.
    		// Ideally we would just always build the targets we need but our Makefile is not that smart
    		env = append(env, "BUILD_ALL=false")
    	}
    
    	env = append(env,
    		// Build should already run in container, having multiple layers of docker causes issues
    		"BUILD_WITH_CONTAINER=0",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. src/cmd/go/internal/clean/clean.go

    		fuzzDir := cache.Default().FuzzDir()
    		if err := sh.RemoveAll(fuzzDir); err != nil {
    			base.Error(err)
    		}
    	}
    }
    
    var cleaned = map[*load.Package]bool{}
    
    // TODO: These are dregs left by Makefile-based builds.
    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pkg/spiffe/spiffe_test.go

          "y": "HX1rdVwFy7NAsLcWtmt0D9IxtbwmU3oDJfji9T4ZXDs"
        }
      ]
    }`
    
    	// validRootCertFile, validIntCertFile and validWorkloadCertFile are in a certification chain.
    	// They are generated using tools/certs/Makefile. Replace "cluster.local" with "foo.domain.com"
    	// export INTERMEDIATE_DAYS=3650
    	// export WORKLOAD_DAYS=3650
    	// make foo-certs-selfSigned
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        println "Transformed \$input.name to green"
                    }
                }
                @CacheableTransform
                abstract class MakeBlue implements TransformAction<TransformParameters.None> {
                    @PathSensitive(PathSensitivity.NAME_ONLY)
                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. 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)
  7. configure.py

      open(_TF_BAZELRC, 'w').close()
    
    
    def cleanup_makefile():
      """Delete any leftover BUILD files from the Makefile build.
    
      These files could interfere with Bazel parsing.
      """
      makefile_download_dir = os.path.join(_TF_WORKSPACE_ROOT, 'tensorflow',
                                           'contrib', 'makefile', 'downloads')
      if os.path.isdir(makefile_download_dir):
        for root, _, filenames in os.walk(makefile_download_dir):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		if err != nil {
    			t.Fatalf("Run failed with error. Failed to create a new volumeAttachment: <%v>", err)
    		}
    		vaInformer.GetIndexer().Add(newVa)
    	}
    
    	// Makesure the informer cache is synced
    	informerFactory.Start(tCtx.Done())
    
    	if !kcache.WaitForNamedCacheSync("attach detach", tCtx.Done(),
    		informerFactory.Core().V1().Pods().Informer().HasSynced,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top