Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 268 for Ufour (0.05 sec)

  1. tests/test_tutorial/test_schema_extra_example/test_tutorial005_an_py310.py

                                            "value": {
                                                "name": "Baz",
                                                "price": "thirty five point four",
                                            },
                                        },
                                    },
                                }
                            },
                            "required": True,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 26 18:03:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. 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)
  3. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    			namespaces: []string{metav1.NamespaceSystem, metav1.NamespacePublic, v1.NamespaceNodeLease},
    			actions: [][]string{
    				{"create", "namespaces"},
    			},
    		},
    
    		{
    			name:       "the four namespaces",
    			namespaces: []string{metav1.NamespaceSystem, metav1.NamespacePublic, v1.NamespaceNodeLease, v1.NamespaceDefault},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

      // Create the sample tensor to convert.
      Tensor tensor(DT_STRING, TensorShape({1, 2, 2, 1}));
      EXPECT_EQ(4, tensor.NumElements());
      auto Tt = tensor.flat<tstring>();
      Tt.setValues({"one", "two", "three", "four"});
      auto value_or_status = ConvertTensor(tensor, &b);
      ASSERT_TRUE(value_or_status.ok());
      auto attr = value_or_status.value();
    
      EXPECT_TRUE(mlir::isa<mlir::DenseStringElementsAttr>(attr));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. 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)
  6. src/crypto/internal/nistec/p256.go

    	table[0].Set(q)
    	for i := 1; i < 15; i += 2 {
    		table[i].Double(table[i/2])
    		table[i+1].Add(table[i], q)
    	}
    
    	// Instead of doing the classic double-and-add chain, we do it with a
    	// four-bit window: we double four times, and then add [0-15]P.
    	t := NewP256Point()
    	p.Set(NewP256Point())
    	for i, byte := range scalar {
    		// No need to double on the first iteration, as p is the identity at
    		// this point, and [N]∞ = ∞.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    The catalog makes sharing dependencies and version configurations between subprojects simple.
    It also allows teams to enforce versions of libraries and plugins in large projects.
    
    The version catalog typically contains four sections:
    
    1. [versions] to declare the version numbers that plugins and libraries will reference.
    2. [libraries] to define the libraries used in the build files.
    3. [bundles] to define a set of dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      /** Flag in the opcode which indicates a control frame. */
      internal const val OPCODE_FLAG_CONTROL = 8
    
      /**
       * Byte 1 flag for whether the payload data is masked.
       *
       * If this flag is set, the next four
       * bytes represent the mask key. These bytes appear after any additional bytes specified by [B1_MASK_LENGTH].
       */
      internal const val B1_FLAG_MASK = 128
    
      /**
       * Byte 1 mask for the payload length.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TableCollectionTest.java

              supportsPut,
              supportsRemove,
              supportsClear,
              supportsIteratorRemove);
        }
    
        @Override
        protected String getKeyNotInPopulatedMap() {
          return "four";
        }
    
        @Override
        protected Integer getValueNotInPopulatedMap() {
          return 4;
        }
      }
    
      abstract static class RowTests extends MapTests {
        RowTests(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top