Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,006 for exploded (0.14 sec)

  1. internal/bucket/versioning/versioning_test.go

    	}
    	tests := []struct {
    		prefix   string
    		excluded bool
    	}{
    		{
    			prefix:   "app1-jobs/output/_temporary/attempt1/data.csv",
    			excluded: true,
    		},
    		{
    			prefix:   "app1-jobs/output/final/attempt1/data.csv",
    			excluded: false,
    		},
    	}
    
    	for i, test := range tests {
    		if v.PrefixSuspended(test.prefix) != test.excluded {
    			if test.excluded {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 08 05:06:44 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

        /**
         * A quoted include path eg {@code "hello.h"}
         */
        QUOTED,
        /**
         * An identifier that should be macro expanded. These appear in the body of a directive eg {@code #define HEADER ABC}.
         */
        MACRO,
        /**
         * A macro function invocation that should be expanded. These appear in the body of a directive and as arguments to another function eg {@code #define HEADER ABC(X, Y)}.
         */
        MACRO_FUNCTION,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				fmt.Fprintf(&individualCheckOutput, "[+]%s ok\n", check.Name())
    			}
    		}
    		if excluded.Len() > 0 {
    			fmt.Fprintf(&individualCheckOutput, "warn: some health checks cannot be excluded: no matches for %s\n", formatQuoted(excluded.List()...))
    			klog.V(6).Infof("cannot exclude some health checks, no health checks are installed matching %s",
    				formatQuoted(excluded.List()...))
    		}
    		// always be verbose on failure
    		if len(failedChecks) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ExcludeMetadata.java

     */
    public interface ExcludeMetadata {
        /**
         * The coordinates of the module to be excluded.
         * A '*' value for group or name indicates a wildcard match.
         */
        ModuleIdentifier getModuleId();
    
        /**
         * The attributes of the artifact to be excluded. A '*' value for any attribute indicates a wildcard match.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. internal/bucket/versioning/versioning.go

    	Suspended State = "Suspended"
    )
    
    var (
    	errExcludedPrefixNotSupported = Errorf("excluded prefixes extension supported only when versioning is enabled")
    	errTooManyExcludedPrefixes    = Errorf("too many excluded prefixes")
    )
    
    // ExcludedPrefix - holds individual prefixes excluded from being versioned.
    type ExcludedPrefix struct {
    	Prefix string
    }
    
    // Versioning - Configuration for bucket versioning.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_empty_err.txt

    -- $WORK/empty/empty.txt --
    -- $WORK/exclude/exclude.go --
    // +build exclude
    
    package exclude
    -- $WORK/testonly/testonly_test.go --
    package testonly_test
    -- $WORK/excluded-stdout --
    package ./excluded: cannot find package "." in:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 922 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/port_range_test.go

    			}
    			if tc.included >= 0 && !pr.Contains(tc.included) {
    				t.Errorf("expected %q to include %d", f.String(), tc.included)
    			}
    			if tc.excluded >= 0 && pr.Contains(tc.excluded) {
    				t.Errorf("expected %q to exclude %d", f.String(), tc.excluded)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRule.java

     * dependencies.
     */
    public interface ExcludeRule {
        String GROUP_KEY = "group";
        String MODULE_KEY = "module";
    
        /**
         * The exact name of the organization or group that should be excluded.
          */
        String getGroup();
    
        /**
         * The exact name of the module that should be excluded.
         */
        String getModule();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  9. .idea/codeInsightSettings.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="JavaProjectCodeInsightSettings">
        <excluded-names>
          <name>kotlin.reflect.jvm.internal.impl</name>
        </excluded-names>
      </component>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 25 17:30:00 UTC 2016
    - 233 bytes
    - Viewed (0)
  10. hack/verify-flags-underscore.py

    # not contain underscore. If any flag needs to be excluded from this check,
    # need to add that flag in hack/verify-flags/excluded-flags.txt.
    def check_underscore_in_flags(rootdir, files):
        # preload the 'known' flags which don't follow the - standard
        pathname = os.path.join(rootdir, "hack/verify-flags/excluded-flags.txt")
        f = open(pathname, 'r')
        excluded_flags = set(f.read().splitlines())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top