Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,026 for excluded (0.14 sec)

  1. docs/compression/README.md

    To show help on setting compression config values.
    
    ```bash
    ~ mc admin config set myminio compression
    ```
    
    To enable compression for all content, no matter the extension and content type
    (except for the default excluded types) set BOTH extensions and mime types to empty.
    
    ```bash
    ~ mc admin config set myminio compression enable="on" extensions="" mime_types=""
    ```
    
    The compression settings may also be set through environment variables.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestFilter.java

         */
        TestFilter includeTest(String className, String methodName);
    
        /**
         * Excludes a test method specified by test class name and method name.
         *
         * @param className the class name of the test to exclude
         * @param methodName the method name of the test to exclude. Can be null.
         * @return this filter object
         * @since 5.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultFileCopyDetails.java

        @Override
        public void setPath(String path) {
            relativePath = RelativePath.parse(getRelativePath().isFile(), path);
        }
    
        boolean isExcluded() {
            return excluded;
        }
    
        @Override
        public void exclude() {
            excluded = true;
        }
    
        @Override
        @Deprecated
        public void setMode(int mode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/duration/duration.go

    // ShortHumanDuration returns a succinct representation of the provided duration
    // with limited precision for consumption by humans.
    func ShortHumanDuration(d time.Duration) string {
    	// Allow deviation no more than 2 seconds(excluded) to tolerate machine time
    	// inconsistence, it can be considered as almost now.
    	if seconds := int(d.Seconds()); seconds < -1 {
    		return "<invalid>"
    	} else if seconds < 0 {
    		return "0s"
    	} else if seconds < 60 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/netlink.go

    	// Only the addresses of the current family are returned.
    	// IPv6 link-local and loopback addresses are excluded.
    	GetAllLocalAddresses() (sets.Set[string], error)
    	// GetLocalAddresses return all local addresses for an interface.
    	// Only the addresses of the current family are returned.
    	// IPv6 link-local and loopback addresses are excluded.
    	GetLocalAddresses(dev string) (sets.Set[string], error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_import_mod.txt

    # Test that GOPATH/pkg/mod is excluded
    env GO111MODULE=off
    ! go list mod/foo
    stderr 'disallowed import path'
    
    -- mod/foo/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 00:35:26 UTC 2018
    - 143 bytes
    - Viewed (0)
  7. src/regexp/exec2_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !race
    
    package regexp
    
    import (
    	"testing"
    )
    
    // This test is excluded when running under the race detector because
    // it is a very expensive test and takes too long.
    func TestRE2Exhaustive(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping TestRE2Exhaustive during short test")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 508 bytes
    - Viewed (0)
  8. test/abi/leaf.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type i5f5 struct {
    	a, b          int16
    	c, d, e       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 641 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_all_gobuild.txt

    env GOOS=linux
    env GOARCH=amd64
    go list all
    
    # go list all should work with GOOS=darwin, but it used to fail because
    # in the absence of //go:build support, p looked like it needed q
    # (p_test.go was not properly excluded), and q was Linux-only.
    #
    # Also testing with r and s that +build lines keep working.
    env GOOS=darwin
    go list all
    
    -- go.mod --
    go 1.17
    module m
    
    -- p/p.go --
    package p
    
    -- p/p_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 674 bytes
    - Viewed (0)
  10. hack/make-rules/verify.sh

      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    # Exclude typecheck in certain cases, if they're running in a separate job.
    if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-typecheck.sh"              # runs in separate typecheck job
        )
    fi
    
    # Exclude dependency checks in certain cases, if they're running in a separate job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top