Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,101 for ignoreMe (0.32 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	KubeletExtraArgs []Arg
    
    	// IgnorePreflightErrors provides a slice of pre-flight errors to be ignored when the current node is registered, e.g. 'IsPrivilegedUser,Swap'.
    	// Value 'all' ignores errors from all checks.
    	IgnorePreflightErrors []string
    
    	// ImagePullPolicy specifies the policy for image pulling during kubeadm "init" and "join" operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

            succeeds(taskName)
    
            where:
            taskName << ['runJavaExec', 'runExecOperationsJavaExec', 'test']
        }
    
        def "if custom debug argument is passed to the build then debug options is ignored with task :#taskName"() {
            setup:
            sampleProject """
                debugOptions {
                    enabled = true
                    server = false
                    suspend = false
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1alpha1/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: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1/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: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. 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)
  7. src/go/printer/printer.go

    		hasSep := false
    		if prev == nil {
    			// first comment of a comment group
    			j := 0
    			for i, ch := range p.wsbuf {
    				switch ch {
    				case blank:
    					// ignore any blanks before a comment
    					p.wsbuf[i] = ignore
    					continue
    				case vtab:
    					// respect existing tabs - important
    					// for proper formatting of commented structs
    					hasSep = true
    					continue
    				case indent:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/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: Tue Mar 07 11:58:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/note.go

    	// The message looks like:
    	//
    	//	go.sum database tree
    	//	2
    	//	nND/nri/U0xuHUrYSy0HtMeal2vzD9V4k/BO79C+QeI=
    	//
    	// For forwards compatibility, extra text lines after the encoding are ignored.
    	if !bytes.HasPrefix(text, treePrefix) || bytes.Count(text, []byte("\n")) < 3 || len(text) > 1e6 {
    		return Tree{}, errMalformedTree
    	}
    
    	lines := strings.SplitN(string(text), "\n", 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

            BuildableTestMethodResult testcase(long id, String name, @DelegatesTo(value = BuildableTestMethodResult, strategy = Closure.DELEGATE_FIRST) Closure configClosure = {}) {
                def duration = methodCounter.compute(name) { ignored, value ->  value == null ? 1 : value + 1 } * 1000
                BuildableTestMethodResult methodResult = new BuildableTestMethodResult(id, name, outputEvents, new SimpleTestResult(duration))
                add(methodResult)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top