Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,290 for Warningf (0.1 sec)

  1. src/cmd/go/testdata/script/mod_patterns.txt

    stdout '^unsafe: \[all \.\.\.\]'
    stdout 'index/suffixarray: \[\.\.\.\]'
    stdout 'cmd/pprof: \[\.\.\.\]'
    
    stderr -count=1 '^go: warning: "./xyz..." matched no packages$'
    
    # 'go list ./...' should not try to resolve the main module.
    cd ../empty
    go list -deps ./...
    ! stdout .
    ! stderr 'finding'
    stderr -count=1 '^go: warning: "./..." matched no packages'
    
    # disabling cgo should drop useC
    [short] skip
    env CGO_ENABLED=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. plugin/pkg/admission/security/podsecurity/admission_test.go

    		ctxWithRecorder := warning.WithWarningRecorder(ctx, &dc)
    		if err := p.Validate(ctxWithRecorder, attrs, nil); err != nil {
    			b.Fatal(err)
    		}
    		// should either be a single aggregated warning, or a unique warning per pod
    		if dc.count != (1+namespaceWarningCount) && dc.count != (podCount+namespaceWarningCount) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:29:47 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1/generated.proto

      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
      // Warnings over 256 characters and large numbers of warnings may be truncated.
      // +optional
      repeated string warnings = 7;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
      // Warnings over 256 characters and large numbers of warnings may be truncated.
      // +optional
      repeated string warnings = 7;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    	"warnings":         "warnings is a list of warning messages to return to the requesting API client. Warning messages describe a problem the client making the API request should correct or be aware of. Limit warnings to 120 characters if possible. Warnings over 256 characters and large numbers of warnings may be truncated.",
    }
    
    func (AdmissionResponse) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admission/v1/generated.proto

      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
      // Warnings over 256 characters and large numbers of warnings may be truncated.
      // +optional
      repeated string warnings = 7;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
      // Warnings over 256 characters and large numbers of warnings may be truncated.
      // +optional
      repeated string warnings = 7;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginDependenciesIntegrationTest.groovy

            failure.assertHasFailures(2)
        }
    
    
        private badCode() {
            // No Warnings
            file("src/main/java/org/gradle/Class1.java") <<
                "package org.gradle; class Class1 { public boolean isFoo(Object arg) { return true; } }"
            // PMD Lvl 2 Warning BooleanInstantiation
            // PMD Lvl 3 Warning OverrideBothEqualsAndHashcode
            file("src/test/java/org/gradle/Class1Test.java") <<
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

    				t.Fatalf("expected errors: \n%q\n got: \n%q\n", tt.errors, err.String())
    			}
    			if tt.warnings != warnings {
    				t.Fatalf("expected warnings: \n%q\n got \n%q\n", tt.warnings, warnings)
    			}
    		})
    	}
    }
    
    func TestValidateProfiles(t *testing.T) {
    	manifests := filepath.Join(env.IstioSrc, operatorSubdirFilePath)
    	profiles, err := helm.ListProfiles(manifests)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest.groovy

        private static final String JAVA_SRC_DIR_PATH = 'src/main/java'
    
        def "compiler warnings emitted from compilation task are grouped"() {
            given:
            def javaSourceFile = file("$JAVA_SRC_DIR_PATH/MyClass.java")
            def expectedOutput = "${javaSourceFile.absolutePath}:4: warning: [deprecation] Legacy in unnamed package has been deprecated"
    
            buildFile << """
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top