Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 456 for verified$ (0.12 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

          setFuture(localInputFuture);
          // TODO(cpovirk): Test that fallback is not run in this case.
          return;
        }
    
        @SuppressWarnings("unchecked") // verified safe by isInstanceOfThrowableClass
        X castThrowable = (X) throwable;
        T fallbackResult;
        try {
          fallbackResult = doFallback(localFallback, castThrowable);
        } catch (Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/expiration.go

    	// Indicates whether MinIO will remove all versions. If set to true, all versions will be deleted;
    	// if set to false the policy takes no action. This action uses the Days/Date to expire objects.
    	// This check is verified for latest version of the object.
    	DeleteAll Boolean `xml:"ExpiredObjectAllVersions"`
    
    	set bool
    }
    
    // MarshalXML encodes delete marker boolean into an XML form.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

    //===----------------------------------------------------------------------===//
    // Binary op legalizations.
    // Most of these expand from the same pattern. Full semantics are
    // verified for tf.Add and pattern application only for the rest.
    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @add
    func.func @add(%arg0: tensor<2xi32>) -> tensor<2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/crypto/x509/verify.go

    		}
    		if opts.Roots != nil && opts.Roots.systemPool {
    			platformChains, err := c.systemVerify(&opts)
    			// If the platform verifier succeeded, or there are no additional
    			// roots, return the platform verifier result. Otherwise, continue
    			// with the Go verifier.
    			if err == nil || opts.Roots.len() == 0 {
    				return platformChains, err
    			}
    		}
    	}
    
    	if opts.Roots == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      LogicalResult matchAndRewrite(Operation *op,
                                    PatternRewriter &rewriter) const override {
        // Assumes TensorFlow convolution op is already verified to be
        // in valid form.
    
        // Match a TFConvOpType under the following conditions:
        // * The 'T' attribute must exist and be of value DT_FLOAT.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    		return true
    	}
    	// We assume that the CCC of the first character in a decomposition
    	// is always non-zero if different from info.ccc and that we can return
    	// false at this point. This is verified by maketables.
    	return false
    }
    
    // BoundaryAfter returns true if runes cannot combine with or otherwise
    // interact with this or previous runes.
    func (p Properties) BoundaryAfter() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/proxy/serviceport.go

    			continue
    		}
    
    		// kube-proxy does not implement IP family translation, skip addresses with
    		// different IP family
    		ip := netutils.ParseIPSloppy(ing.IP) // (already verified as an IP-address)
    		if ingFamily := proxyutil.GetIPFamilyFromIP(ip); ingFamily == ipFamily {
    			info.loadBalancerVIPs = append(info.loadBalancerVIPs, ip)
    		} else {
    			invalidIPs = append(invalidIPs, ip)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        }
    
        def "distribution size should not exceed a certain number"() {
            expect:
            def size = getZip().size()
    
            assert size <= getMaxDistributionSizeBytes() : "Distribution content needs to be verified. If the increase is expected, raise the size by ${Math.ceil((size - getMaxDistributionSizeBytes()) / 1024 / 1024)}"
        }
    
        def "no duplicate jar entries in distribution"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    				//      VS Routing (add Egress Header) --> Egress Gateway(originates mTLS with client certs)
    				//      --> externalServer(443 with only Simple TLS used and client cert is not verified)
    				"Mutual TLS origination from egress gateway to https endpoint": {
    					destinationRuleMode: "MUTUAL",
    					code:                http.StatusOK,
    					gateway:             true,
    					fakeRootCert:        false,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/join_test.go

    			joinOptions.skipCRIDetect = true // avoid CRI detection in unit tests
    			cmd := newCmdJoin(nil, joinOptions)
    
    			// set klog output destination to bytes.Buffer so that log could be fetched and verified later.
    			var buffer bytes.Buffer
    			klog.SetOutput(&buffer)
    			klog.LogToStderr(false)
    			defer klog.LogToStderr(true)
    
    			// sets cmd flags (that will be reflected on the join options)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top