Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,112 for _ignored (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/diff/diff.go

    					return true
    				}
    			}
    			return false
    		}, cmp.Ignore()),
    		// ignore map entries that aren't set in v2
    		cmp.FilterPath(func(path cmp.Path) bool {
    			switch i := path.Last().(type) {
    			case cmp.MapIndex:
    				if _, v2 := i.Values(); !v2.IsValid() {
    					fmt.Println("E")
    					return true
    				}
    			}
    			return false
    		}, cmp.Ignore()),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            def symlink = tmpDir.createFile("dir1/cc")
            def file = tmpDir.createFile("dir2/cc.bin")
            def ignored = tmpDir.createFile("dir3/cc.bin")
    
            given:
            symlink.setText("!<symlink>../dir2/cc.bin\u0000", "utf-8")
            os.getExecutableName("cc") >> "cc.bin"
            os.path >> [symlink.parentFile, ignored.parentFile]
            os.windows >> true
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    
    // FailurePolicyType specifies the type of failure policy
    type FailurePolicyType string
    
    const (
    	// Ignore means that an error calling the webhook is ignored.
    	Ignore FailurePolicyType = "Ignore"
    	// Fail means that an error calling the webhook causes the admission to fail.
    	Fail FailurePolicyType = "Fail"
    )
    
    // MatchPolicyType specifies the type of match policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitivity.java

         * <ul>
         *     <li>The path of the input directory is ignored.</li>
         *     <li>The path of the files in the input directory are considered relative to the input directory.</li>
         * </ul>
         */
        RELATIVE,
    
        /**
         * Consider only the name of files and directories.
         */
        NAME_ONLY,
    
        /**
         * Ignore file paths and directories altogether.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. operator/pkg/compare/compare_test.go

    		b    string
    		mask string
    		want any
    	}{
    		{
    			desc: "ignore masked",
    			a: `
    ak: av
    bk:
      b1k: b1v
      b2k: b2v
    `,
    			b: `
    ak: av
    bk:
      b1k: b1v-changed
      b2k: b2v-changed
    `,
    			mask: `
    bk:
      b1k: ignored
      b2k: ignored
    `,
    			want: ``,
    		},
    		{
    			desc: "ignore nested masked",
    			a: `
    ak: av
    bk:
      bbk:
        b1k: b1v
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializerObjectInputStream.java

                for (ClassLoaderDetails details : classLoaderDetails.values()) {
                    try {
                        return map.resolveClass(details, type);
                    } catch (ClassNotFoundException ignored) {
                        // ignore
                    }
                }
                throw e;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

            then:
            registry.all.empty
        }
    
        def "mark busy ignores entry that has been removed"() {
            given:
            def address = address()
    
            when:
            registry.markState(address, Busy)
    
            then:
            registry.all.empty
        }
    
        def "mark idle ignores entry that has been removed"() {
            given:
            def address = address()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                package io.another;
    
                public class BaseExample {}
            '''
            file("src/main/ignoredJava/ignored/module-info.java") << 'module ignored { exports io.ignored; }'
            file("src/main/ignoredJava/ignored/io/ignored/IgnoredExample.java") << '''
                package io.ignored;
    
                public class IgnoredExample {}
            '''
    
            when:
            run "compileJava"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/annotations/Annotations.gwt.xml

        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top