Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 267 for Informational (0.46 sec)

  1. fuzzing/fuzzingserver-expected.txt

    "5.2 OK"
    "5.20 OK"
    "5.3 OK"
    "5.4 OK"
    "5.5 OK"
    "5.6 OK"
    "5.7 OK"
    "5.8 OK"
    "5.9 OK"
    "7.1.1 OK"
    "7.1.2 OK"
    "7.1.3 OK"
    "7.1.4 OK"
    "7.1.5 OK"
    "7.1.6 INFORMATIONAL"
    "7.13.1 INFORMATIONAL"
    "7.13.2 INFORMATIONAL"
    "7.3.1 OK"
    "7.3.2 OK"
    "7.3.3 OK"
    "7.3.4 OK"
    "7.3.5 OK"
    "7.3.6 OK"
    "7.5.1 FAILED"
    "7.7.1 OK"
    "7.7.10 OK"
    "7.7.11 OK"
    "7.7.12 OK"
    "7.7.13 OK"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/diag/level.go

    }
    
    func (l Level) String() string {
    	return l.name
    }
    
    func (l Level) IsWorseThanOrEqualTo(target Level) bool {
    	return l.sortOrder <= target.sortOrder
    }
    
    var (
    	// Info level is for informational messages
    	Info = Level{2, "Info"}
    
    	// Warning level is for warning messages
    	Warning = Level{1, "Warning"}
    
    	// Error level is for error messages
    	Error = Level{0, "Error"}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

             * General purpose failure message
             */
            Failure,
            /**
             * <b>Emphasized</b> failure message
             */
            FailureHeader,
            /**
             * General purpose informational text
             */
            Info,
            /**
             * General purpose error text
             */
            Error
        }
    
        /**
         * Appends a character using the current style.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

      fun setStatus(status: String) =
        apply {
          this.status = status
        }
    
      fun setResponseCode(code: Int): MockResponse {
        val reason =
          when (code) {
            in 100..199 -> "Informational"
            in 200..299 -> "OK"
            in 300..399 -> "Redirection"
            in 400..499 -> "Client Error"
            in 500..599 -> "Server Error"
            else -> "Mock Response"
          }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/cors.md

    These are any `OPTIONS` request with `Origin` and `Access-Control-Request-Method` headers.
    
    In this case the middleware will intercept the incoming request and respond with appropriate CORS headers, and either a `200` or `400` response for informational purposes.
    
    ### Simple requests
    
    Any request with an `Origin` header. In this case the middleware will pass the request through as normal, but will include appropriate CORS headers on the response.
    
    ## More info
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 20:28:37 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    http://www.eclipse.org/ http://www.eclipse.org. Third Party Content The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use. ASM 4.1 The plug-in includes software developed by the ObjectWeb consortium as part of the ASM project at http://asm.ow2.org/ http://asm.ow2.org/....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	// - Success: the plugin gets executed successfully and the pod can be made schedulable.
    	// - Error: the plugin aborts due to some internal error.
    	//
    	// Informational plugins should be configured ahead of other ones, and always return Unschedulable status.
    	// Optionally, a non-nil PostFilterResult may be returned along with a Success status. For example,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/server.go

    	if err := util.AnnotateEnrolledPod(s.kubeClient, &pod.ObjectMeta); err != nil {
    		log.Errorf("failed to annotate pod enrollment: %v", err)
    		// don't return error here, as this is purely informational.
    	}
    	return retErr
    }
    
    func (s *meshDataplane) RemovePodFromMesh(ctx context.Context, pod *corev1.Pod) error {
    	log := log.WithLabels("ns", pod.Namespace, "name", pod.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/net/http/httptrace/trace.go

    	GotFirstResponseByte func()
    
    	// Got100Continue is called if the server replies with a "100
    	// Continue" response.
    	Got100Continue func()
    
    	// Got1xxResponse is called for each 1xx informational response header
    	// returned before the final non-1xx response. Got1xxResponse is called
    	// for "100 Continue" responses, even if Got100Continue is also defined.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/switch.go

    //
    // If Switch decides to switch toolchains but cannot identify a toolchain to use.
    // it prints the errors along with one more about not being able to find the toolchain
    // and returns.
    //
    // Otherwise, Switch prints an informational message giving a reason for the
    // switch and the toolchain being invoked and then switches toolchains.
    // This operation never returns.
    func (s *Switcher) Switch(ctx context.Context) {
    	if !s.NeedSwitch() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top