Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,050 for isnumber (0.14 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // many constant and resource arguments there are:
    
    // Name of the attribute containing the number of constant arguments.
    extern const char* const kXlaNumConstantArgsAttr;
    
    // Name of the attribute containing the number of resource variable arguments.
    extern const char* const kXlaNumResourceArgsAttr;
    
    // Name of the attribute defining whether the cluster has reference variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. src/syscall/ztypes_aix_ppc64.go

    	Type      int32
    	Bsize     uint64
    	Blocks    uint64
    	Bfree     uint64
    	Bavail    uint64
    	Files     uint64
    	Ffree     uint64
    	Fsid      Fsid64_t
    	Vfstype   int32
    	Fsize     uint64
    	Vfsnumber int32
    	Vfsoff    int32
    	Vfslen    int32
    	Vfsvers   int32
    	Fname     [32]uint8
    	Fpack     [32]uint8
    	Name_max  int32
    	Pad_cgo_0 [4]byte
    }
    
    type Fsid64_t struct {
    	Val [2]uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 14:36:41 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/dist/testjson.go

    		// at the output, it's really nice to keep field order because it
    		// preserves a lot of regularity in the output.
    		dec := json.NewDecoder(bytes.NewBuffer(line))
    		dec.UseNumber()
    		val, err := decodeJSONValue(dec)
    		if err == nil && val.atom == json.Delim('{') {
    			// Rewrite the Package field.
    			found := false
    			for i := 0; i < len(val.seq); i += 2 {
    				if val.seq[i].atom == "Package" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. docs/debugging/healing-bin/main.go

    					}
    					buf := bytes.NewBuffer(nil)
    					if _, err = msgp.CopyToJSON(buf, bytes.NewReader(b)); err != nil {
    						return err
    					}
    
    					dec := json.NewDecoder(buf)
    					// Use number to preserve integers.
    					dec.UseNumber()
    					var htr map[string]interface{}
    					if err = dec.Decode(&htr); err != nil {
    						return err
    					}
    					ht[file.Name] = htr
    				}
    			}
    			b, err := json.MarshalIndent(ht, "", "  ")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	Type      int32
    	Bsize     uint64
    	Blocks    uint64
    	Bfree     uint64
    	Bavail    uint64
    	Files     uint64
    	Ffree     uint64
    	Fsid      Fsid64_t
    	Vfstype   int32
    	Fsize     uint64
    	Vfsnumber int32
    	Vfsoff    int32
    	Vfslen    int32
    	Vfsvers   int32
    	Fname     [32]uint8
    	Fpack     [32]uint8
    	Name_max  int32
    	_         [4]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java

        }
    
        public void setGidNumber_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            setGidNumber_Avg("gidNumber", opLambda);
        }
    
        public void setGidNumber_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            AvgAggregationBuilder builder = regAvgA(name, "gidNumber");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 212.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

        protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE;
        protected String nativeOs;
        protected String nativeLanMan = "jCIFS";
        protected int vcNumber = 1;
        protected boolean dfsDisabled = false;
        protected long dfsTTL = 300;
        protected boolean dfsStrictView = false;
        protected boolean dfsConvertToFqdn;
        protected String logonShare;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/config/PropertyConfiguration.java

            this.nativeOs = p.getProperty("jcifs.smb.client.nativeOs", System.getProperty("os.name"));
            this.nativeLanMan = p.getProperty("jcifs.smb.client.nativeLanMan", "jCIFS");
            this.vcNumber = 1;
    
            this.dfsDisabled = Config.getBoolean(p, "jcifs.smb.client.dfs.disabled", false);
            this.dfsTTL = Config.getLong(p, "jcifs.smb.client.dfs.ttl", 300);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

        cluster_size[cluster]++;
      }
    
      string result =
          absl::StrCat("Clustered nodes: ", clustered_nodes,
                       "\nUnclustered nodes: ", cluster_size[kNoCluster],
                       "\nNumber of clusters: ", clusters.size() - 1, "\n\n");
      for (const auto& pair : clusters) {
        if (pair.first == kNoCluster) {
          absl::StrAppend(&result, "unclustered");
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/encoding/json/decode.go

    	}
    	return d.savedError
    }
    
    // A Number represents a JSON number literal.
    type Number string
    
    // String returns the literal text of the number.
    func (n Number) String() string { return string(n) }
    
    // Float64 returns the number as a float64.
    func (n Number) Float64() (float64, error) {
    	return strconv.ParseFloat(string(n), 64)
    }
    
    // Int64 returns the number as an int64.
    func (n Number) Int64() (int64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top