Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for flavor (0.19 sec)

  1. hack/golangci-strict.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. hack/golangci.yaml.in

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. README.md

    ### Download and Install/Run
    
    Fess 14.12 is now available and can be downloaded on the [Releases page](https://github.com/codelibs/fess/releases "download"). Downloads come in 3 flavors: deb, rpm, zip.
    
    The following commands show how to use the zip download:
    
        $ unzip fess-14.12.x.zip
        $ cd fess-14.12.x
        $ ./bin/fess
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/apis/core/annotation_key_constants.go

    	// Topology Aware Hints for a Service. This may be set to "Auto" or
    	// "Disabled". Any other value is treated as "Disabled". This annotation has
    	// been deprecated in favor of the `service.kubernetes.io/topology-mode`
    	// annotation which also allows "Auto" and "Disabled", but is not limited to
    	// those (it's open ended to provide room for experimentation while we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Get this feature's backing source set.
         * <p>
         * {@link SourceSet#getOutput()} and the classpath-returning methods on the returned
         * source set should ideally be avoided in favor of the similarly-named methods on
         * this feature. The concept of source sets having a single set of outputs is only
         * relevant for single-target features.
         *
         * @return This feature's source set.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    	}
    	if isPercent {
    		if roundUp {
    			value = int(math.Ceil(float64(value) * (float64(total)) / 100))
    		} else {
    			value = int(math.Floor(float64(value) * (float64(total)) / 100))
    		}
    	}
    	return value, nil
    }
    
    // GetValueFromIntOrPercent was deprecated in favor of
    // GetScaledValueFromIntOrPercent. This method was treating all int as a numeric value and all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    const (
    	mb                    int64 = 1024 * 1024
    	minThreshold          int64 = 23 * mb
    	maxContainerThreshold int64 = 1000 * mb
    )
    
    // ImageLocality is a score plugin that favors nodes that already have requested pod container's images.
    type ImageLocality struct {
    	handle framework.Handle
    }
    
    var _ framework.ScorePlugin = &ImageLocality{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    Version catalog supports the simplified `group:artifact:version` notation.
    
    If you are using the `Settings` DSL to create a catalog, you can use the `to` method in different flavors:
    
    ```groovy
    library("some-alias", "com.mycompany:some-lib:1.1").withoutVersion()
    // or
    library("some-alias", "com.mycompany", "some-lib").version("1.1")
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// Topology Aware Hints for a Service. This may be set to "Auto" or
    	// "Disabled". Any other value is treated as "Disabled". This annotation has
    	// been deprecated in favor of the "service.kubernetes.io/topology-mode"
    	// annotation.
    	DeprecatedAnnotationTopologyAwareHints = "service.kubernetes.io/topology-aware-hints"
    
    	// AnnotationTopologyMode can be used to enable or disable Topology Aware
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    These are different things.
    The Android cache is internal to certain tasks in the Android plugin, and will eventually be removed in favor of native Gradle support.
    
    == Why use the build cache?
    
    The build cache can _significantly_ improve build performance for Android projects, in many cases by 30-40%.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top