Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 866 for OUT (0.52 sec)

  1. tensorflow/c/kernels_experimental.cc

      } else {
        binary_add_func(ctx, a, b, out);
        return cc_ctx->status();
      }
    }
    
    static Status VariantBinaryAddFunc(
        ::tensorflow::OpKernelContext* cc_ctx, const Variant& a, const Variant& b,
        Variant* out,
        void (*binary_add_func)(TF_OpKernelContext* ctx, TF_Tensor* a, TF_Tensor* b,
                                TF_Tensor* out)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        assertTrue(source.wasStreamOpened());
        assertFalse(source.wasStreamClosed());
    
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ByteStreams.copy(in, out);
        in.close();
        out.close();
    
        assertTrue(source.wasStreamClosed());
        assertArrayEquals(bytes, out.toByteArray());
      }
    
      public void testSize() throws IOException {
        assertEquals(bytes.length, source.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/vet/vet_test.go

    		var errmsgs []string
    		if we.auto {
    			errmsgs, out = partitionStrings("<autogenerated>", out)
    		} else {
    			errmsgs, out = partitionStrings(we.prefix, out)
    		}
    		if len(errmsgs) == 0 {
    			errs = append(errs, fmt.Errorf("%s:%d: missing error %q", we.file, we.lineNum, we.reStr))
    			continue
    		}
    		matched := false
    		n := len(out)
    		for _, errmsg := range errmsgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/crypto/x509/parser.go

    				if err != nil {
    					return err
    				}
    				out.BasicConstraintsValid = true
    				out.MaxPathLenZero = out.MaxPathLen == 0
    			case 17:
    				out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(e.Value)
    				if err != nil {
    					return err
    				}
    
    				if len(out.DNSNames) == 0 && len(out.EmailAddresses) == 0 && len(out.IPAddresses) == 0 && len(out.URIs) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	se *networking.ServiceEntry, configKey *configKey, clusterID cluster.ID,
    ) []*model.ServiceInstance {
    	out := make([]*model.ServiceInstance, 0, len(services)*len(se.Ports))
    	for _, service := range services {
    		for _, port := range se.Ports {
    			out = append(out, s.convertEndpoint(service, port, wle, configKey, clusterID))
    		}
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion_test.go

    			out.GRPCRoute = append(out.GRPCRoute, c)
    		case gvk.TCPRoute:
    			out.TCPRoute = append(out.TCPRoute, c)
    		case gvk.TLSRoute:
    			out.TLSRoute = append(out.TLSRoute, c)
    		case gvk.ReferenceGrant:
    			out.ReferenceGrant = append(out.ReferenceGrant, c)
    		case gvk.ServiceEntry:
    			out.ServiceEntry = append(out.ServiceEntry, c)
    		}
    	}
    	out.Namespaces = map[string]*corev1.Namespace{}
    	for ns := range namespaces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat.go

    	}
    
    	out.resetFor(m)
    	out.limbs[0] = 1
    	out.montgomeryRepresentation(m)
    	tmp := NewNat().ExpandFor(m)
    	for _, b := range e {
    		for _, j := range []int{4, 0} {
    			// Square four times. Optimization note: this can be implemented
    			// more efficiently than with generic Montgomery multiplication.
    			out.montgomeryMul(out, out, m)
    			out.montgomeryMul(out, out, m)
    			out.montgomeryMul(out, out, m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

                out.failOnDynamicVersions();
            }
            if (isFailingOnChangingVersions()) {
                out.failOnChangingVersions();
            }
            if (!isDependencyVerificationEnabled()) {
                out.disableDependencyVerification();
            }
            out.getUseGlobalDependencySubstitutionRules().convention(useGlobalDependencySubstitutionRules.get());
            return out;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

        %out, %c1 = tf_executor.island wraps "tf.opA"(%ri) {_tpu_replicate = "cluster"} : (tensor<i32>) -> tensor<i32>
        %ro:2, %c2 = tf_executor.island wraps "tf.TPUReplicatedOutput"(%out) : (tensor<i32>) -> (tensor<i32>, tensor<i32>)
        tf_executor.fetch %ro#0, %ro#1 : tensor<i32>, tensor<i32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns.go

    	}
    
    	if printManifest {
    		fmt.Fprint(out, "---")
    		fmt.Fprintf(out, "%s", coreDNSDeploymentBytes)
    		fmt.Fprint(out, "---")
    		fmt.Fprintf(out, "%s", coreDNSConfigMapBytes)
    		fmt.Fprint(out, "---")
    		fmt.Fprintf(out, "%s", coreDNSServiceBytes)
    		fmt.Fprint(out, "---")
    		fmt.Fprintf(out, "%s", []byte(CoreDNSClusterRole))
    		fmt.Fprint(out, "---")
    		fmt.Fprintf(out, "%s", []byte(CoreDNSClusterRoleBinding))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top