Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for precision (0.26 sec)

  1. staging/src/k8s.io/api/apps/v1/generated.pb.go

    			if wireType != 0 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Revision", wireType)
    			}
    			m.Revision = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.Revision |= int64(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    			if wireType != 0 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Revision", wireType)
    			}
    			m.Revision = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.Revision |= int64(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    			return vcsCmd.Status(vcsCmd, repoDir)
    		})
    		if err != nil {
    			setVCSError(err)
    			return
    		}
    
    		appendSetting("vcs", vcsCmd.Cmd)
    		if st.Revision != "" {
    			appendSetting("vcs.revision", st.Revision)
    		}
    		if !st.CommitTime.IsZero() {
    			stamp := st.CommitTime.UTC().Format(time.RFC3339Nano)
    			appendSetting("vcs.time", stamp)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    						{
    							Controller: boolP(true),
    							APIVersion: "apps/v1",
    							Kind:       "DaemonSet",
    							Name:       "foo",
    						},
    					},
    				},
    				Revision: 1,
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "daemonset.apps/foo", int64(1), "0s"}}},
    		},
    		{
    			history: apps.ControllerRevision{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // within a work space.
    //
    // # Remote import paths
    //
    // Certain import paths also
    // describe how to obtain the source code for the package using
    // a revision control system.
    //
    // A few common code hosting sites have special syntax:
    //
    //	Bitbucket (Git, Mercurial)
    //
    //		import "bitbucket.org/user/project"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			indexers:      nil,
    			expectedError: false,
    		},
    		{
    			name: "normal indexers",
    			indexers: &cache.Indexers{
    				"f:spec.nodeName":            emptyIndexFunc,
    				"l:controller-revision-hash": emptyIndexFunc,
    			},
    			expectedError: false,
    		},
    		{
    			name: "too short indexers",
    			indexers: &cache.Indexers{
    				"f": emptyIndexFunc,
    			},
    			expectedError: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    			}
    
    			err = volumevalidation.ValidatePathNoBacksteps(subPath)
    			if err != nil {
    				return nil, cleanupAction, fmt.Errorf("unable to provision SubPath `%s`: %v", subPath, err)
    			}
    
    			volumePath := hostPath
    			hostPath = filepath.Join(volumePath, subPath)
    
    			if subPathExists, err := hu.PathExists(hostPath); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // is up to ~2x faster.
      const bool is_f16 = input_ty.getElementType().isF16();
      if (is_f16 && CanUseTensorCores(devices)) return "NHWC";
    
      // For f32/f16 data type decision depends on the filter size in spatial
      // dimensions, for other data types we keep current data format.
      if (!input_ty.getElementType().isF32() && !input_ty.getElementType().isF16())
        return getDataFormat();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * The concurrent hash map implementation built by {@link CacheBuilder}.
     *
     * <p>This implementation is heavily derived from revision 1.96 of <a
     * href="http://tinyurl.com/ConcurrentHashMap">ConcurrentHashMap.java</a>.
     *
     * @author Charles Fry
     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

    import java.util.logging.Logger;
    import javax.annotation.CheckForNull;
    
    /**
     * The concurrent hash map implementation built by {@link CacheBuilder}.
     *
     * <p>This implementation is heavily derived from revision 1.96 of <a
     * href="http://tinyurl.com/ConcurrentHashMap">ConcurrentHashMap.java</a>.
     *
     * @author Charles Fry
     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top