Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,773 for compared (0.21 sec)

  1. src/cmd/internal/gcprog/gcprog.go

    	if w.debug != nil {
    		fmt.Fprintf(w.debug, "gcprog: ptr at %d\n", index)
    	}
    	w.lit(1)
    }
    
    // ShouldRepeat reports whether it would be worthwhile to
    // use a Repeat to describe c elements of n bits each,
    // compared to just emitting c copies of the n-bit description.
    func (w *Writer) ShouldRepeat(n, c int64) bool {
    	// Should we lay out the bits directly instead of
    	// encoding them as a repetition? Certainly if count==1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

      values.push_back(n);
      ...
    }
    
    TYPED_TEST(FooTest, HasPropertyA) { ... }
    
    #endif  // 0
    
    // Type-parameterized tests are abstract test patterns parameterized
    // by a type.  Compared with typed tests, type-parameterized tests
    // allow you to define the test pattern without knowing what the type
    // parameters are.  The defined pattern can be instantiated with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			},
    			failedNodes: []*v1.Node{},
    			want: []framework.NodeScore{
    				{Name: "node-a", Score: 33}, // +13, compared to maxSkew=1
    				{Name: "node-b", Score: 66}, // +6, compared to maxSkew=1
    				{Name: "node-c", Score: 100},
    				{Name: "node-d", Score: 16}, // +16, compared to maxSkew=1
    			},
    		},
    		{
    			name: "one constraint on node, all 4 nodes are candidates, maxSkew=3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  4. src/text/template/doc.go

    size and exact type are ignored, so any integer value, signed or unsigned,
    may be compared with any other integer value. (The arithmetic value is compared,
    not the bit pattern, so all negative integers are less than all unsigned integers.)
    However, as usual, one may not compare an int with a float32 and so on.
    
    Associated templates
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8_generic.go

    		b[12][i] = b12
    		b[13][i] = b13
    		b[14][i] = b14
    		b[15][i] = b15
    	}
    
    	if goarch.BigEndian {
    		// On a big-endian system, reading the uint32 pairs as uint64s
    		// will word-swap them compared to little-endian, so we word-swap
    		// them here first to make the next swap get the right answer.
    		for i, x := range buf {
    			buf[i] = x>>32 | x<<32
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	MigratedPluginsAnnotationKey = "storage.alpha.kubernetes.io/migrated-plugins"
    
    	// PodDeletionCost can be used to set to an int32 that represent the cost of deleting
    	// a pod compared to other pods belonging to the same ReplicaSet. Pods with lower
    	// deletion cost are preferred to be deleted before pods with higher deletion cost.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/log/syslog/syslog.go

    	// bytes printed by Fprintf, because this must behave like
    	// an io.Writer.
    	return len(msg), nil
    }
    
    func (n *netConn) writeString(p Priority, hostname, tag, msg, nl string) error {
    	if n.local {
    		// Compared to the network form below, the changes are:
    		//	1. Use time.Stamp instead of time.RFC3339.
    		//	2. Drop the hostname field from the Fprintf.
    		timestamp := time.Now().Format(time.Stamp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    		if line != "" {
    			sample := javaSampleRx.FindStringSubmatch(line)
    			if sample == nil {
    				// Not a valid sample, exit.
    				return b, locs, nil
    			}
    
    			// Java profiles have data/fields inverted compared to other
    			// profile types.
    			var err error
    			value1, value2, value3 := sample[2], sample[1], sample[3]
    			addrs, err := parseHexAddresses(value3)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Working with Python *enumerations*
    
    The value of the *path parameter* will be an *enumeration member*.
    
    #### Compare *enumeration members*
    
    You can compare it with the *enumeration member* in your created enum `ModelName`:
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    #### Get the *enumeration value*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    // BUG: Timestamps coming from traces on Windows platforms are
    // only comparable with timestamps from the same trace. Timestamps
    // across traces cannot be compared, because the system clock is
    // not used as of Go 1.22.
    //
    // BUG: Traces produced by Go versions 1.21 and earlier cannot be
    // compared with timestamps from other traces taken on the same
    // machine. This is because the system clock was not used at all
    // to collect those timestamps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top