Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 293 for int_val (0.18 sec)

  1. logger/sql_test.go

    			NumericRegexp: nil,
    			Vars:          []interface{}{"jinzhu?", 1, 999.99, true, []byte("12345"), tt, &tt, nil, "w@g.\"com", myrole, pwd, intVal},
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Mar 21 08:00:02 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_test_util.cc

            found_dtype = true;
          } else {
            return false;
          }
        } else if (attr.first == "value") {
          if (attr.second.has_tensor() &&
              attr.second.tensor().int_val_size() == 1 &&
              attr.second.tensor().int_val(0) == v) {
            found_value = true;
          } else {
            return false;
          }
        }
      }
      return found_dtype && found_value;
    }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:52 GMT 2021
    - 17.8K bytes
    - Viewed (2)
  3. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      std::vector<TF_Filesystem_Option_Value_Union> option_values(values.size());
      for (size_t i = 0; i < values.size(); i++) {
        memset(&option_values[i], 0, sizeof(option_values[i]));
        option_values[i].int_val = values[i];
      }
      option_value.values = &option_values[0];
      option.value = &option_value;
      UniquePtrTo_TF_Status plugin_status(TF_NewStatus(), TF_DeleteStatus);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 23.1K bytes
    - Viewed (0)
  4. src/main/resources/crawler/interval.xml

    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="intervalController"
    		class="org.codelibs.fess.crawler.interval.FessIntervalController"
    		instance="prototype">
    	</component>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Oct 11 06:51:14 GMT 2015
    - 381 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

    } TF_TransactionToken;
    
    // The named union is needed here (as opposed to
    // inside the `TF_Filesystem_Option_Value` struct)
    // as MSVC does not recognize `typeof`.
    typedef union TF_Filesystem_Option_Value_Union {
      int64_t int_val;
      double real_val;
      struct {
        char* buf;
        int buf_length;
      } buffer_val;
    } TF_Filesystem_Option_Value_Union;
    
    typedef struct TF_Filesystem_Option_Value {
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  6. helm/minio/templates/servicemonitor.yaml

        {{- else }}
        - port: http
          scheme: http
        {{- end }}
          path: /minio/v2/metrics/node
          {{- if .Values.metrics.serviceMonitor.interval }}
          interval: {{ .Values.metrics.serviceMonitor.interval }}
          {{- end }}
          {{- if .Values.metrics.serviceMonitor.scrapeTimeout }}
          scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }}
          {{- end }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  7. .github/dependabot.yml

    ---
    version: 2
    updates:
      - package-ecosystem: gomod
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: github-actions
        directory: /
        schedule:
          interval: weekly
      - package-ecosystem: gomod
        directory: /tests
        schedule:
    Others
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Aug 09 05:16:25 GMT 2021
    - 287 bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java

        public static final String UPDATE_POLICY_ALWAYS = "always";
    
        public static final String UPDATE_POLICY_DAILY = "daily";
    
        public static final String UPDATE_POLICY_INTERVAL = "interval";
    
        public static final String CHECKSUM_POLICY_FAIL = "fail";
    
        public static final String CHECKSUM_POLICY_WARN = "warn";
    
        public static final String CHECKSUM_POLICY_IGNORE = "ignore";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-bucket.json

                "uid": "${DS_PROMETHEUS}"
              },
              "exemplar": true,
              "expr": "sum by (bucket,api) (increase(minio_bucket_requests_4xx_errors_total{job=\"$scrape_jobs\"}[$__rate_interval]))",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{bucket,api}}",
              "refId": "A"
            }
          ],
          "thresholds": [],
          "timeRegions": [],
    Json
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Tue Feb 20 09:45:00 GMT 2024
    - 71.4K bytes
    - Viewed (1)
  10. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

                "uid": "${DS_PROMETHEUS}"
              },
              "exemplar": true,
              "expr": "sum by (bucket,api) (increase(minio_bucket_requests_4xx_errors_total{job=\"$scrape_jobs\"}[$__rate_interval]))",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{bucket,api}}",
              "refId": "A"
            }
          ],
          "title": "S3 API Request 4xx Error Rate",
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 102K bytes
    - Viewed (0)
Back to top