Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for xoring (0.22 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                }
            }
        }
    
        static String queryLookup( String query, String param ) {
            char in[] = query.toCharArray();
            int i, ch, st, eq;
    
            st = eq = 0;
            for( i = 0; i < in.length; i++) {
                ch = in[i];
                if( ch == '&' ) {
                    if( eq > st ) {
                        String p = new String( in, st, eq - st );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Dilatations, I observ'd that the whole Contraction or Dilatation of the Diameter of any Ring made by all the degrees of red, was to that of the Diameter of the same Ring made by all the degrees of violet, as about four to three, or five to four, and that when the Light was of the middle Colour between yellow and green, the Diameter of the Ring was very nearly an arithmetical Mean between the greatest Diameter of the same Ring made by the outmost red, and the least Diameter thereof made by the outmost violet:...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // instance.
    std::optional<std::string> NcclAllReduceOp::GetResourceInstanceStr() {
      auto device_attr = (*this)->getAttrOfType<StringAttr>("device");
      // Treat missing device attribute like unspecified (= empty string) attribute.
      // Note that different op instances with the same string (including empty
      // string) are seen as dependent (same resource instance).
      if (!device_attr) return "";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{name: "object access",
    			obj: map[string]interface{}{
    				"a": map[string]interface{}{
    					"b": 1,
    					"d": nil,
    				},
    				"a1": map[string]interface{}{
    					"b1": map[string]interface{}{
    						"c1": 4,
    					},
    				},
    				"a3": map[string]interface{}{},
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"a": objectType(map[string]schema.Structural{
    					"b": integerType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //    dependencies. This is realized by always returning the same string ("")
    //    in this case. In fact, we could return any string here, as long as it is
    //    the same string for all op instances without ordering tokens.
    std::optional<std::string> CollectiveReduceV2Op::GetResourceInstanceStr() {
      if (!getIsStateless() && getNorderingToken() == 0)
        return std::optional<std::string>("");
      return std::nullopt;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/callback.go

    	return
    }
    
    // Test that C can pass in a Go string from a string constant.
    func testCallGoWithString(t *testing.T) {
    	C.callGoWithString()
    	want := "string passed from C to Go"
    	if stringFromGo != want {
    		t.Errorf("string passed through C is %s, want %s", stringFromGo, want)
    	}
    }
    
    var stringFromGo string
    
    //export goWithString
    func goWithString(s string) {
    	stringFromGo = s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (parser.parseColon()) {
        return nullptr;
      }
    
      std::string data;
      if (parser.parseString(&data)) {
        return nullptr;
      }
      if (data.size() < 2 || data.substr(0, 2) != "0x") {
        parser.emitError(parser.getNameLoc(), "Hex string doesn't start with `0x`");
        return nullptr;
      }
    
      std::string bytes_data = absl::HexStringToBytes(data.substr(2));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      # now, set a generic core_pattern that users can work with.
      echo "/core.%e.%p.%t" > /proc/sys/kernel/core_pattern
    }
    
    # secure_random generates a secure random string of bytes. This function accepts
    # a number of secure bytes desired and returns a base64 encoded string with at
    # least the requested entropy. Rather than directly reading from /dev/urandom,
    # we use uuidgen which calls getrandom(2). getrandom(2) verifies that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    	spec := nullTestSpec{"nullstring", "string", [6]nullTestRow{
    		{Null[string]{"aqua", true}, "", Null[string]{"aqua", true}},
    		{Null[string]{"brown", false}, "", Null[string]{"", false}},
    		{"chartreuse", "", Null[string]{"chartreuse", true}},
    		{Null[string]{"darkred", true}, "", Null[string]{"darkred", true}},
    		{Null[string]{"eel", false}, "", Null[string]{"", false}},
    		{"foo", Null[string]{"black", false}, nil},
    	}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    	}
    }
    
    type proxyFromEnvTest struct {
    	req string // URL to fetch; blank means "http://example.com"
    
    	env      string // HTTP_PROXY
    	httpsenv string // HTTPS_PROXY
    	noenv    string // NO_PROXY
    	reqmeth  string // REQUEST_METHOD
    
    	want    string
    	wanterr error
    }
    
    func (t proxyFromEnvTest) String() string {
    	var buf strings.Builder
    	space := func() {
    		if buf.Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top