Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,524 for _ignored (0.13 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    // +enum
    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.
    // +enum
    type MatchPolicyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  2. src/os/signal/doc.go

    on all systems.
    
    If the program was started with SIGHUP or SIGINT ignored, and [Notify]
    is called for either signal, a signal handler will be installed for
    that signal and it will no longer be ignored. If, later, [Reset] or
    [Ignore] is called for that signal, or [Stop] is called on all channels
    passed to Notify for that signal, the signal will once again be
    ignored. Reset will restore the system default behavior for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K 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. 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)
  5. 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)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

     *
     * This set also INTENTIONALLY ignores {@link Actions#doNothing()} actions and empty sets as to avoid growing for something that would never do anything.
     *
     * Actions are executed in order of insertion. Duplicates are ignored. Execution stops on the first failure.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. src/image/jpeg/reader.go

    		p = p[n:]
    		d.bytes.i += n
    		if len(p) == 0 {
    			break
    		}
    		if err := d.fill(); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // ignore ignores the next n bytes.
    func (d *decoder) ignore(n int) error {
    	// Unread the overshot bytes, if any.
    	if d.bytes.nUnreadable != 0 {
    		if d.bits.n >= 8 {
    			d.unreadByteStuffedByte()
    		}
    		d.bytes.nUnreadable = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // This is an alpha feature and managed by the AdmissionWebhookMatchConditions feature gate.
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

            outputContains("result = [b.jar.green, c.jar.green]")
    
            when:
            inputDir.file("other/ignored.txt").text = "ignored as well"
            jarSources.file("some/other/ignored.txt").text = "ignored change"
            jarSources.zipTo(inputJar)
            run(":a:resolve")
            then:
            outputDoesNotContain("processing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    		t.Errorf("writes should be ignored")
    	}
    
    	// verify that a read from a Write channel doesn't block
    	data = make([]byte, 1024)
    	if n, err := conn.channels[4].Read(data); n != 0 || err != io.EOF {
    		t.Errorf("reads should be ignored")
    	}
    
    	// verify that a client write to a Write channel doesn't block (is dropped)
    	if n, err := client.Write(append([]byte{4}, []byte("ignored")...)); err != nil || n != 8 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top