Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 286 for gomod (0.05 sec)

  1. internal/event/target/elasticsearch.go

    	ESSDeprecated ESSupportStatus = "ESSDeprecated"
    	// ESSUnsupported -> we won't work with this ES server
    	ESSUnsupported ESSupportStatus = "ESSUnsupported"
    	// ESSSupported -> all good!
    	ESSSupported ESSupportStatus = "ESSSupported"
    )
    
    func getESVersionSupportStatus(version string) (res ESSupportStatus, err error) {
    	parts := strings.Split(version, ".")
    	if len(parts) < 1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/resolver.go

    		// alias declarations, and then everything else. This appears to avoid most situations
    		// where the type of an alias is needed before it is available.
    		// There may still be cases where this is not good enough (see also go.dev/issue/25838).
    		// In those cases Checker.ident will report an error ("invalid use of type alias").
    		var aliasList []*TypeName
    		var othersList []Object // everything that's not a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/go/types/resolver.go

    		// alias declarations, and then everything else. This appears to avoid most situations
    		// where the type of an alias is needed before it is available.
    		// There may still be cases where this is not good enough (see also go.dev/issue/25838).
    		// In those cases Checker.ident will report an error ("invalid use of type alias").
    		var aliasList []*TypeName
    		var othersList []Object // everything that's not a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. cmd/metacache-server-pool.go

    			}
    		}
    		if IsErr(err, []error{
    			nil,
    			context.Canceled,
    			context.DeadlineExceeded,
    			// io.EOF is expected and should be returned but no need to log it.
    			io.EOF,
    		}...) {
    			// Expected good errors we don't need to return error.
    			return entries, err
    		}
    		entries.truncate(0)
    		go func() {
    			rpc := globalNotificationSys.restClientFromHash(pathJoin(o.Bucket, o.Prefix))
    			if rpc != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

        }
    
        if (url.host == routeUrl.host) {
          return true // Host match. The URL is supported.
        }
    
        // We have a host mismatch. But if the certificate matches, we're still good.
        return !noCoalescedConnections && handshake != null && certificateSupportHost(url, handshake!!)
      }
    
      private fun certificateSupportHost(
        url: HttpUrl,
        handshake: Handshake,
      ): Boolean {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    				t.Errorf("expected Equals to return %v", tc.equal)
    			}
    
    			// Compare types with schema against native types. This is slightly different than how
    			// CEL performs equality against data literals, but is a good sanity check.
    			if tc.lhs.Equal(types.DefaultTypeAdapter.NativeToValue(tc.rhs.Value())) != types.Bool(tc.equal) {
    				t.Errorf("expected unstructuredVal.Equals(<native type>) to return %v", tc.equal)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/policy_static_test.go

    			},
    			expectedError: true,
    		},
    		{
    			description: "good arg",
    			policyOptions: map[string]string{
    				FullPCPUsOnlyOption: "true",
    			},
    			expectedError: false,
    			expectedValue: StaticPolicyOptions{
    				FullPhysicalCPUsOnly: true,
    			},
    		},
    		{
    			description: "good arg, bad value",
    			policyOptions: map[string]string{
    				FullPCPUsOnlyOption: "enabled!",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/graph_builder.go

    			// add those potentially invalid dependents to the attemptToDelete queue.
    			// if their owners are still solid the attemptToDelete will be a no-op.
    			// this covers the bad child -> good parent observation sequence.
    			// the good parent -> bad child observation sequence is handled in addDependentToOwners
    			for _, dep := range potentiallyInvalidDependents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. cmd/bucket-handlers_test.go

    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    			shouldPass:         true,
    		},
    		// Test case - 8.
    		// Good case without delimiter.
    		{
    			bucket:             bucketName,
    			prefix:             "",
    			keyMarker:          "",
    			uploadIDMarker:     "",
    			delimiter:          "",
    			maxUploads:         "100",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/UnsignedBytes.java

           * non-final fields need to be reloaded inside the loop.
           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top