Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for modcache (0.31 sec)

  1. pkg/controlplane/controller/crdregistration/crdregistration_controller_test.go

    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			registration := &fakeAPIServiceRegistration{}
    			crdCache := cache.NewIndexer(cache.DeletionHandlingMetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
    			crdLister := crdlisters.NewCustomResourceDefinitionLister(crdCache)
    			c := crdRegistrationController{
    				crdLister:              crdLister,
    				apiServiceRegistration: registration,
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 02 17:48:26 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	t.Parallel()
    	c, _ := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    
    	ns := "default"
    	podCache := c.pods
    
    	handled := 0
    	podCache.c.handlers.AppendWorkloadHandler(func(*model.WorkloadInstance, model.Event) {
    		handled++
    	})
    
    	f := podCache.onEvent
    
    	ip := "172.0.3.35"
    	pod1 := metav1.ObjectMeta{Name: "pod1", Namespace: ns}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.modelRepositoryHolder = modelRepositoryHolder;
                return this;
            }
    
            public ModelBuilderRequestBuilder modelCache(ModelCache modelCache) {
                this.modelCache = modelCache;
                return this;
            }
    
            public ModelBuilderRequestBuilder listener(Object listener) {
                this.listener = listener;
                return this;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/base/flag.go

    }
    
    // AddModCommonFlags adds the module-related flags common to build commands
    // and 'go mod' subcommands.
    func AddModCommonFlags(flags *flag.FlagSet) {
    	flags.BoolVar(&cfg.ModCacheRW, "modcacherw", false, "")
    	flags.StringVar(&cfg.ModFile, "modfile", "", "")
    	flags.StringVar(&fsys.OverlayFile, "overlay", "", "")
    }
    
    func ChdirFlag(s string) error {
    	// main handles -C by removing it from the command line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/toolchain/select.go

    		cmdFlags = &run.CmdRun.Flag
    	}
    
    	// The modcachrw flag is unique, in that it affects how we fetch the
    	// requested module to even figure out what toolchain it needs.
    	// We need to actually set it before we check the toolchain version.
    	// (See https://go.dev/issue/64282.)
    	modcacherwFlag := cmdFlags.Lookup("modcacherw")
    	if modcacherwFlag == nil {
    		base.Fatalf("internal error: modcacherw flag not registered for command")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

            return this;
        }
    
        @Override
        public ModelCache getModelCache() {
            return request.getModelCache();
        }
    
        @Override
        public FilterModelBuildingRequest setModelCache(ModelCache modelCache) {
            request.setModelCache(modelCache);
    
            return this;
        }
    
        @Override
        public Model getFileModel() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/link_matching_actionid.txt

    symlink $GOROOT -> $TESTGO_GOROOT
    
    # Set up fresh GOCACHE
    env GOCACHE=$WORK/gocache1
    mkdir $GOCACHE
    
    # Build a simple binary
    go build -o binary1 -trimpath -x main.go
    
    # Now repeat the same process with the compiler at a different local path
    env GOROOT=$WORK/goroot2
    symlink $GOROOT -> $TESTGO_GOROOT
    
    env GOCACHE=$WORK/gocache2
    mkdir $GOCACHE
    
    go build -o binary2 -trimpath -x main.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 14:18:11 UTC 2020
    - 835 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_cache_compile.txt

    env GO111MODULE=off
    [short] skip
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building trivial non-main package should run compiler the first time.
    go build -x lib.go
    stderr '(compile|gccgo)( |\.exe).*lib\.go'
    
    # ... but not again ...
    go build -x lib.go
    ! stderr '(compile|gccgo)( |\.exe).*lib\.go'
    
    # ... unless we use -a.
    go build -a -x lib.go
    stderr '(compile|gccgo)( |\.exe)'
    
    -- lib.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 430 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_partial.txt

    # Download modules and populate go.sum.
    go get -modcacherw
    exists $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/go.mod
    
    # 'go mod verify' should fail if we delete a file.
    go mod verify
    rm $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/go.mod
    ! go mod verify
    
    # Create a .partial file to simulate an failure extracting the zip file.
    cp empty $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.partial
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            return this;
        }
    
        @Override
        public ModelCache getModelCache() {
            return this.modelCache;
        }
    
        @Override
        public DefaultModelBuildingRequest setModelCache(ModelCache modelCache) {
            this.modelCache = modelCache;
    
            return this;
        }
    
        @Override
        public Model getFileModel() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top