Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Cleaning (0.15 sec)

  1. Makefile

    	@mkdir -p $(GOPATH)/bin && cp -af $(PWD)/minio $(GOPATH)/bin/minio
    	@echo "Installation successful. To learn more, try \"minio --help\"."
    
    clean: ## cleanup all generated assets
    	@echo "Cleaning up all the generated files"
    	@find . -name '*.test' | xargs rm -fv
    	@find . -name '*~' | xargs rm -fv
    	@find . -name '.#*#' | xargs rm -fv
    	@find . -name '#*#' | xargs rm -fv
    	@rm -rvf minio
    	@rm -rvf build
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// owner: @yt2985
    	// kep: http://kep.k8s.io/2799
    	// alpha: v1.28
    	// beta: v1.29
    	// GA: v1.30
    	//
    	// Enables cleaning up of secret-based service account tokens.
    	LegacyServiceAccountTokenCleanUp featuregate.Feature = "LegacyServiceAccountTokenCleanUp"
    
    	// owner: @RobertKrawitz
    	// alpha: v1.15
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    used recently. Running 'go clean -cache' deletes all cached data.
    
    The build cache correctly accounts for changes to Go source files,
    compilers, compiler options, and so on: cleaning the cache explicitly
    should not be necessary in typical use. However, the build cache
    does not detect changes to C libraries imported with cgo.
    If you have made changes to the C libraries on your system, you
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

    link: https://eng.uber.com/ludwig-v0-2/ title: 'Uber: Ludwig v0.2 Adds New Features and Other Improvements to its Deep Learning Toolbox [including a FastAPI server]' - author: Maarten Grootendorst author_link: https://www.linkedin.com/in/mgrootendorst/ link: https://towardsdatascience.com/how-to-deploy-a-machine-learning-model-dc51200fe8cf title: How to Deploy a Machine Learning Model - author: Johannes Gontrum author_link: https://twitter.com/gntrm link: https://medium.com/@gntrm/jwt-authentica...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/os/exec.go

    const (
    	// modePID means that Process operations such use the raw PID from the
    	// Pid field. handle is not used.
    	//
    	// This may be due to the host not supporting handles, or because
    	// Process was created as a literal, leaving handle unset.
    	//
    	// This must be the zero value so Process literals get modePID.
    	modePID processMode = iota
    
    	// modeHandle means that Process operations use handle, which is
    	// initialized with an OS process handle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
            """
            // Materializing of `ValueSource` at configuration time is leading to serializing its `Class`
            file("a/build.gradle") << """
                import org.gradle.api.provider.ValueSourceParameters
    
                plugins.apply(my.MyPlugin)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    			continue
    		}
    
    		i := strings.Index(kv, "=")
    		if i == 0 {
    			// We observe in practice keys with a single leading "=" on Windows.
    			// TODO(#49886): Should we consume only the first leading "=" as part
    			// of the key, or parse through arbitrarily many of them until a non-"="?
    			i = strings.Index(kv[1:], "=") + 1
    		}
    		if i < 0 {
    			if kv != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. cmd/object-handlers-common.go

    	// use mtime < t+1s instead of mtime <= t to check for unmodified.
    	return objTime.After(givenTime.Add(1 * time.Second))
    }
    
    // canonicalizeETag returns ETag with leading and trailing double-quotes removed,
    // if any present
    func canonicalizeETag(etag string) string {
    	return etagRegex.ReplaceAllString(etag, "$1")
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

          @Override
          public @Nullable Object[] toArray() {
            return data.toArray();
          }
        };
      }
    
      /**
       * Returns a "nefarious" map entry with the specified key and value, meaning an entry that is
       * suitable for testing that map entries cannot be modified via a nefarious implementation of
       * equals. This is used for testing unmodifiable collections of map entries; for example, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/endpointshards.go

    	// v0 -> invalidate -> v1. Reverting a change we pushed violates our contract of monotonically
    	// moving forward in version. In practice, this is pretty rare and self corrects nearly
    	// immediately. However, clearing the cache here has almost no impact on cache performance as we
    	// would clear it shortly after anyways.
    	e.clearCacheForService(hostname, namespace)
    
    	return pushType
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top