Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,938 for reckon (0.12 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/WebSocketRecorder.kt

        assertThat(nextEvent()).isEqualTo(Pong(payload))
      }
    
      fun assertClosing(
        code: Int,
        reason: String,
      ) {
        assertThat(nextEvent()).isEqualTo(Closing(code, reason))
      }
    
      fun assertClosed(
        code: Int,
        reason: String,
      ) {
        assertThat(nextEvent()).isEqualTo(Closed(code, reason))
      }
    
      fun assertExhausted() {
        assertThat(events).isEmpty()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. cmd/config-current_test.go

    	if err = newTestConfig(globalMinioDefaultRegion, objLayer); err != nil {
    		t.Fatalf("Init Test config failed")
    	}
    
    	if globalSite.Region() != globalMinioDefaultRegion {
    		t.Errorf("Expecting region `us-east-1` found %s", globalSite.Region())
    	}
    
    	// Set new region and verify.
    	config.SetRegion(globalServerConfig, "us-west-1")
    	site, err := config.LookupSite(
    		globalServerConfig[config.SiteSubSys][config.Default],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      // expected-remark@below {{Region #0, Arg #0, ID 2 : 1, 2, 8}}
      // expected-remark@below {{Region #0, Arg #1, ID 3 : 1, 3, 8}}
      // expected-remark@below {{Region #0, Arg #2, ID 4 : 1, 4, 8}}
      // expected-remark@below {{Region #1, Arg #0, ID 5 : 1, 5, 8}}
      // expected-remark@below {{Region #1, Arg #1, ID 6 : 1, 6, 8}}
      // expected-remark@below {{Region #1, Arg #2, ID 7 : 1, 7, 8}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

      bool IsPotentiallyWritten(Value resource) const;
    
     private:
      // Analyze the specified region for resource mutating operations, namely
      // TF::AssignVariableOp, if so, set the resource associated as "potentially
      // written".
      LogicalResult AnalyzeRegion(Region& region);
    
      // If an op is not one of the handled ones, we assume all resource usages
      // within its purview are mutating in nature.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authorization.go

    				decisionAnnotationKey, decisionAllow,
    				reasonAnnotationKey, reason)
    			handler.ServeHTTP(w, req)
    			return
    		}
    		if err != nil {
    			audit.AddAuditAnnotation(ctx, reasonAnnotationKey, reasonError)
    			responsewriters.InternalError(w, req, err)
    			return
    		}
    
    		klog.V(4).InfoS("Forbidden", "URI", req.RequestURI, "reason", reason)
    		audit.AddAuditAnnotations(ctx,
    			decisionAnnotationKey, decisionForbid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerificationConfiguration.java

            private final String version;
            private final String fileName;
            private final boolean regex;
            private final String reason;
    
            TrustCoordinates(@Nullable String group, @Nullable String name, @Nullable String version, @Nullable String fileName, boolean regex, @Nullable String reason) {
                this.group = group;
                this.name = name;
                this.version = version;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pkg/kubelet/lifecycle/predicate.go

    			return PodAdmitResult{
    				Admit:   fit,
    				Reason:  "UnexpectedAdmissionError",
    				Message: message,
    			}
    		}
    	}
    	if !fit {
    		var reason string
    		var message string
    		if len(reasons) == 0 {
    			message = fmt.Sprint("GeneralPredicates failed due to unknown reason, which is unexpected.")
    			klog.InfoS("Failed to admit pod: GeneralPredicates failed due to unknown reason, which is unexpected", "pod", klog.KObj(admitPod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions_test.go

    			expectChanged: true,
    			expected: []metav1.Condition{
    				{Type: "first"},
    				{Type: "third"},
    				{Type: "second", Status: metav1.ConditionTrue, LastTransitionTime: metav1.Time{Time: oneHourBefore}, Reason: "reason", Message: "message"},
    			},
    		},
    		{
    			name: "use-supplied-time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadata.java

            DependencyConstraintImpl(String group, String module, VersionConstraint versionConstraint, String reason, ImmutableAttributes attributes) {
                this.group = group;
                this.module = module;
                this.versionConstraint = versionConstraint;
                this.reason = reason;
                this.attributes = attributes;
            }
    
            @Override
            public String getGroup() {
                return group;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/memory_windows.go

    	RegionSize uintptr
    	// The state of the pages in the region.
    	State uint32
    	// The access protection of the pages in the region.
    	Protect uint32
    	// The type of pages in the region.
    	Type uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 940 bytes
    - Viewed (0)
Back to top