Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 2,290 for Warningf (0.18 sec)

  1. pilot/pkg/config/kube/gateway/context.go

    			}
    			if len(otherNamespaces) > 0 {
    				sort.Strings(otherNamespaces)
    				warnings = append(warnings, fmt.Sprintf("hostname %q not found in namespace %q, but it was found in namespace(s) %v",
    					g, namespace, strings.Join(otherNamespaces, ", ")))
    			} else {
    				warnings = append(warnings, fmt.Sprintf("hostname %q not found", g))
    			}
    			foundUnusable = true
    			continue
    		}
    		svcKey := svc.Key()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/registry/certificates/clustertrustbundle/strategy_test.go

    func TestWarningsOnCreate(t *testing.T) {
    	if warnings := Strategy.WarningsOnCreate(context.Background(), &certificates.ClusterTrustBundle{}); warnings != nil {
    		t.Errorf("Got %v, want nil", warnings)
    	}
    }
    
    func TestAllowCreateOnUpdate(t *testing.T) {
    	if Strategy.AllowCreateOnUpdate() != false {
    		t.Errorf("Got true, want false")
    	}
    }
    
    func TestWarningsOnUpdate(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    		t.Run(test.description, func(t *testing.T) {
    			warnings := &warningRecorder{}
    			ctx := warning.WithWarningRecorder(context.Background(), warnings)
    			applyAppArmorVersionSkew(ctx, test.pod)
    			test.validation(t, test.pod)
    
    			if test.expectWarning {
    				if assert.NotEmpty(t, warnings.warnings, "expect warnings") {
    					assert.Contains(t, warnings.warnings[0], `deprecated since v1.30; use the "appArmorProfile" field instead`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

            private final MavenPomDependencies dependencies;
            private final PublicationWarningsCollector warnings;
    
            public ParsedDependencyResult(
                MavenPomDependencies dependencies,
                PublicationWarningsCollector warnings
            ) {
                this.warnings = warnings;
                this.dependencies = dependencies;
            }
    
            public MavenPomDependencies getDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. .idea/inspectionProfiles/idea_default.xml

        <inspection_tool class="SystemOutErr" enabled="true" level="WARNING" enabled_by_default="true">
          <scope name="Tests" level="WARNING" enabled="false" />
        </inspection_tool>
        <inspection_tool class="TeardownCallsSuperTeardown" enabled="true" level="WARNING" enabled_by_default="true" />
        <inspection_tool class="TeardownIsPublicVoidNoArg" enabled="true" level="WARNING" enabled_by_default="true" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DebugLoggerWarningAction.java

        static final String WARNING_MESSAGE_BODY = "\n" +
            "#############################################################################\n" +
            "   WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING\n" +
            "\n" +
            "   Debug level logging will leak security sensitive information!\n" +
            "\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/NotificationsIntegrationTest.groovy

            outputDoesNotContain(welcomeMessage)
        }
    
        def "when debug logging is enabled, debug warning is logged first"() {
            given:
            def expectedWarning = """
    #############################################################################
       WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
    
       Debug level logging will leak security sensitive information!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiReceivingStandardStreamsCrossVersionSpec.groovy

    slf4jLogger.warn('A warning using SLF4j')
    
    def jclLogger = org.apache.commons.logging.LogFactory.getLog('some-logger')
    jclLogger.warn('A warning using JCL')
    
    def log4jLogger = org.apache.log4j.Logger.getLogger('some-logger')
    log4jLogger.warn('A warning using Log4j')
    
    def julLogger = java.util.logging.Logger.getLogger('some-logger')
    julLogger.warning('A warning using JUL')
    '''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pkg/registry/apps/statefulset/strategy.go

    		warnings = append(warnings, pvcutil.GetWarningsForPersistentVolumeClaimSpec(field.NewPath("spec", "volumeClaimTemplates").Index(i), pvc.Spec)...)
    	}
    	return warnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (statefulSetStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for StatefulSet; this means POST is needed to create one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:10 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

        }
        // expected-warning@+1 {{unexpected control dependency path: path 2, node 1 (intermediate)}}
        %island4 = tf_executor.island(%island3) {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        // expected-warning@+3 {{unexpected control dependency path: path 0, node 2 (intermediate)}}
        // expected-warning@+2 {{unexpected control dependency path: path 1, node 2 (intermediate)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top