Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Ufour (0.04 sec)

  1. src/text/template/exec_test.go

    	{"le .Uthree .Ufour", "true", true},
    	{"le .Ufour .Uthree", "false", true},
    	{"gt 1.5 1.5", "false", true},
    	{"gt 1.5 2.5", "false", true},
    	{"gt 1 1", "false", true},
    	{"gt 2 1", "true", true},
    	{"gt 1 2", "false", true},
    	{"gt `xy` `xy`", "false", true},
    	{"gt `xy` `xyz`", "false", true},
    	{"gt .Uthree .Uthree", "false", true},
    	{"gt .Uthree .Ufour", "false", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/reflect/iter_test.go

    				}
    				i++
    			}
    			if i != 4 {
    				t.Fatalf("should loop four times")
    			}
    		}},
    		{"int8", ValueOf(int8(4)), func(t *testing.T, s iter.Seq[Value]) {
    			i := int8(0)
    			for v := range s {
    				if v.Interface().(int8) != i {
    					t.Fatalf("got %d, want %d", v.Int(), i)
    				}
    				i++
    			}
    			if i != 4 {
    				t.Fatalf("should loop four times")
    			}
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 14:27:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        assertNull(map.get("four"));
        strings.add("four");
        assertEquals(ImmutableSortedMap.of("one", 3, "two", 3, "three", 5, "four", 4), map);
        assertEquals(Integer.valueOf(4), map.get("four"));
        SortedMap<String, Integer> headMap = map.headMap("two");
        assertEquals(ImmutableSortedMap.of("four", 4, "one", 3, "three", 5), headMap);
        strings.add("five");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. src/crypto/tls/ech.go

    }
    
    func encodeInnerClientHello(inner *clientHelloMsg, maxNameLength int) ([]byte, error) {
    	h, err := inner.marshalMsg(true)
    	if err != nil {
    		return nil, err
    	}
    	h = h[4:] // strip four byte prefix
    
    	var paddingLen int
    	if inner.serverName != "" {
    		paddingLen = max(0, maxNameLength-len(inner.serverName))
    	} else {
    		paddingLen = maxNameLength + 9
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/crypto/des/block.go

    			for j := 0; j < 16; j++ {
    				f := uint64(sBoxes[s][i][j]) << (4 * (7 - uint(s)))
    				f = permuteBlock(f, permutationFunction[:])
    
    				// Row is determined by the 1st and 6th bit.
    				// Column is the middle four bits.
    				row := uint8(((i & 2) << 4) | i&1)
    				col := uint8(j << 1)
    				t := row | col
    
    				// The rotation was performed in the feistel rounds, being factored out and now mixed into the feistelBox.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/internal/trace/raw/reader.go

    	spec := r.specs[ev]
    	args, err := r.readArgs(len(spec.Args))
    	if err != nil {
    		return Event{}, err
    	}
    	if spec.IsStack {
    		len := int(args[1])
    		for i := 0; i < len; i++ {
    			// Each stack frame has four args: pc, func ID, file ID, line number.
    			frame, err := r.readArgs(4)
    			if err != nil {
    				return Event{}, err
    			}
    			args = append(args, frame...)
    		}
    	}
    	var data []byte
    	if spec.HasData {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/internal/trace/raw/doc.go

    by the IsStack flag. These events also have a trailing unsigned integer argument
    describing the number of stack frame descriptors that follow. Each stack frame
    descriptor is on its own line following the event, consisting of four signed
    integer arguments: the PC, an integer describing the function name, an integer
    describing the file name, and the line number in that file that function was at
    at the time the stack trace was taken.
    
    For example:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    	// irreducible polynomial so the result has to be reduced. The
    	// irreducible polynomial is 1+x+x^2+x^7+x^128. We can subtract that to
    	// eliminate the term at x^128 which also means subtracting the other
    	// four terms. In characteristic 2 fields, subtraction == addition ==
    	// XOR.
    	if msbSet {
    		double.low ^= 0xe100000000000000
    	}
    
    	return
    }
    
    var gcmReductionTable = []uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    ----
    
    Most tasks now have the `UP-TO-DATE` label.
    This is how Gradle lets us know that inputs and outputs have not changed and therefore some tasks did not re-run.
    
    == Step 4. Understanding Outcome Labels
    There are four labels that developers can use to view task outcomes when verbose mode is turned on:
    
    |===
    |Outcome Label |Description
    
    |UP-TO-DATE
    |Task that has been already executed and hasn't changed (incremental build feature)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

     * Use the {@code Project} instance to configure the project.
     */
    ```
    
    ### 1.1.7 Block tags
    
    Any of the standard "block tags" that are used appear in the order `@param`, `@return`, `@throws`, `@deprecated`, and these four types never appear with an empty description:
    
    ```java
    /**
     * @param url an absolute URL giving the base location of the image
     * @param name the location of the image, relative to the url argument
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top