Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,634 for Seven (0.07 sec)

  1. tensorflow/compiler/jit/xla_cluster_util_test.cc

    }
    
    void AddRegularFunctionFunctionDef(FunctionDefLibrary* fdef_lib) {
      Tensor seven(DT_FLOAT, {});
      seven.scalar<float>()() = 7;
      FunctionDef make_regular_float = FunctionDefHelper::Define(
          "RegularFloatFn", {}, {"r:float"}, {},
          {{{"r"}, "Const", {}, {{"dtype", DT_FLOAT}, {"value", seven}}}});
      *fdef_lib->add_function() = make_regular_float;
    }
    
    TEST(NodesRelatedToRefVariables, Basic) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    }
    
    // sevenBitU returns the unsigned LEB128 encoding of v if v is seven bits and nil otherwise.
    // The contents of the returned slice must not be modified.
    func sevenBitU(v int64) []byte {
    	if uint64(v) < uint64(len(sevenbits)) {
    		return sevenbits[v : v+1]
    	}
    	return nil
    }
    
    // sevenBitS returns the signed LEB128 encoding of v if v is seven bits and nil otherwise.
    // The contents of the returned slice must not be modified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/net/http/cookie_test.go

    		"cookie-5=five",
    	},
    	{
    		&Cookie{Name: "cookie-6", Value: "six", Domain: "bad-.abc"},
    		"cookie-6=six",
    	},
    	{
    		&Cookie{Name: "cookie-7", Value: "seven", Domain: "127.0.0.1"},
    		"cookie-7=seven; Domain=127.0.0.1",
    	},
    	{
    		&Cookie{Name: "cookie-8", Value: "eight", Domain: "::1"},
    		"cookie-8=eight",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    The commit messages that accompany your code changes are an important piece of documentation. Please follow these guidelines when creating commits:
    
    * [Write good commit messages.](https://cbea.ms/git-commit/#seven-rules)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/compress/gzip/gunzip_test.go

    			0x94, 0xca, 0x05, 0x00, 0x76, 0xb0, 0x3b, 0xeb,
    			0x24, 0x00, 0x00, 0x00,
    		},
    		nil,
    	},
    	{ // has dynamic huffman blocks
    		"gettysburg",
    		"gettysburg",
    		"  Four score and seven years ago our fathers brought forth on\n" +
    			"this continent, a new nation, conceived in Liberty, and dedicated\n" +
    			"to the proposition that all men are created equal.\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  6. src/regexp/exec_test.go

    // TestProgramTooLongForBacktrack tests that a regex which is too long
    // for the backtracker still executes properly.
    func TestProgramTooLongForBacktrack(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      public static final Integer three = 3;
      public static final Integer four = 4;
      public static final Integer five = 5;
      public static final Integer six = 6;
      public static final Integer seven = 7;
      public static final Integer eight = 8;
      public static final Integer nine = 9;
      public static final Integer m1 = -1;
      public static final Integer m2 = -2;
      public static final Integer m3 = -3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      public static final Integer three = 3;
      public static final Integer four = 4;
      public static final Integer five = 5;
      public static final Integer six = 6;
      public static final Integer seven = 7;
      public static final Integer eight = 8;
      public static final Integer nine = 9;
      public static final Integer m1 = -1;
      public static final Integer m2 = -2;
      public static final Integer m3 = -3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. src/encoding/gob/encoder_test.go

    }
    
    var singleTests = []SingleTest{
    	{17, &testInt, ""},
    	{float32(17.5), &testFloat32, ""},
    	{"bike shed", &testString, ""},
    	{[]string{"bike", "shed", "paint", "color"}, &testSlice, ""},
    	{map[string]int{"seven": 7, "twelve": 12}, &testMap, ""},
    	{[7]int{4, 55, 0, 0, 0, 0, 0}, &testArray, ""}, // case that once triggered a bug
    	{[7]int{4, 55, 1, 44, 22, 66, 1234}, &testArray, ""},
    
    	// Decode errors
    	{172, &testFloat32, "type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        return ImmutableList.copyOf(SORTED_NUMBER_NAMES.subList(i, j));
      }
    
      private static final ImmutableList<String> NUMBER_NAMES =
          ImmutableList.of("one", "two", "three", "four", "five", "six", "seven");
    
      private static final ImmutableList<String> SORTED_NUMBER_NAMES =
          Ordering.<String>natural().immutableSortedCopy(NUMBER_NAMES);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top