Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,213 for Values (0.06 sec)

  1. callbacks/create.go

    				if vs, ok := defaultValueFieldsHavingValue[field]; ok {
    					values.Columns = append(values.Columns, clause.Column{Name: field.DBName})
    					for idx := range values.Values {
    						if vs[idx] == nil {
    							values.Values[idx] = append(values.Values[idx], stmt.DefaultValueOf(field))
    						} else {
    							values.Values[idx] = append(values.Values[idx], vs[idx])
    						}
    					}
    				}
    			}
    		case reflect.Struct:
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

            logger.info(localLogMsg.get());
            String[] values = localLogMsg.get().split("\t");
            assertEquals(5, values.length);
            assertEquals("url:test", values[0]);
            assertTrue(values[1].startsWith("time:"));
            assertTrue(values[2].startsWith("done:"));
            assertTrue(values[3].startsWith("aaa:"));
            assertTrue(values[4].startsWith("bbb:"));
    
            localLogMsg.remove();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/StatsAccumulator.java

          add(value);
        }
      }
    
      /**
       * Adds the given values to the dataset.
       *
       * @param values a series of values
       */
      public void addAll(int... values) {
        for (int value : values) {
          add(value);
        }
      }
    
      /**
       * Adds the given values to the dataset.
       *
       * @param values a series of values, which will be converted to {@code double} values (this may
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/Stats.java

       *
       * @param values a series of values
       */
      public static Stats of(double... values) {
        StatsAccumulator accumulator = new StatsAccumulator();
        accumulator.addAll(values);
        return accumulator.snapshot();
      }
    
      /**
       * Returns statistics over a dataset containing the given values.
       *
       * @param values a series of values
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. helm/minio/templates/_helpers.tpl

    */}}
    {{- if .Values.global }}
    {{- if .Values.global.imagePullSecrets }}
    imagePullSecrets:
    {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
    {{- end }}
    {{- else if .Values.imagePullSecrets }}
    imagePullSecrets:
        {{ toYaml .Values.imagePullSecrets }}
    {{- end -}}
    {{- else if .Values.imagePullSecrets }}
    imagePullSecrets:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

          // non-finite inputs will have sumOfProductsOfDeltas = NaN, so non-finite values will result
          // in NaN naturally.
          sumOfProductsOfDeltas +=
              values.sumOfProductsOfDeltas()
                  + (values.xStats().mean() - xStats.mean())
                      * (values.yStats().mean() - yStats.mean())
                      * values.count();
        }
        yStats.addAll(values.yStats());
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

            regQ(termsQuery);
            return termsQuery;
        }
    
        protected IdsQueryBuilder regIdsQ(Collection<String> values) {
            checkEsInvalidQueryCollection("_id", values);
            IdsQueryBuilder idsQuery = QueryBuilders.idsQuery().addIds(values.toArray(new String[values.size()]));
            regQ(idsQuery);
            return idsQuery;
        }
    
        protected MatchQueryBuilder regMatchQ(String name, Object value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. helm/minio/templates/console-ingress.yaml

        {{- with .Values.consoleIngress.labels }}
          {{- toYaml . | nindent 4 }}
        {{- end }}
      {{- with .Values.consoleIngress.annotations }}
      annotations: {{- toYaml . | nindent 4 }}
      {{- end }}
    spec:
      {{- if .Values.consoleIngress.ingressClassName }}
      ingressClassName: {{ .Values.consoleIngress.ingressClassName }}
      {{- end }}
      {{- if .Values.consoleIngress.tls }}
      tls:
        {{- range .Values.consoleIngress.tls }}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. helm/minio/templates/ingress.yaml

          {{- toYaml . | nindent 4 }}
        {{- end }}
      {{- with .Values.ingress.annotations }}
      annotations: {{- toYaml . | nindent 4 }}
      {{- end }}
    spec:
      {{- if .Values.ingress.ingressClassName }}
      ingressClassName: {{ .Values.ingress.ingressClassName }}
      {{- end }}
      {{- if .Values.ingress.tls }}
      tls:
        {{- range .Values.ingress.tls }}
        - hosts:
          {{- range .hosts }}
            - {{ . | quote }}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

            assertWithMessage("mean by addAll(Stats) of " + values).that(meanByAddAllStats).isNaN();
          } else if (values.hasAnyPositiveInfinity()) {
            assertWithMessage("mean of " + values).that(mean).isPositiveInfinity();
            assertWithMessage("mean by addAll(Stats) of " + values)
                .that(meanByAddAllStats)
                .isPositiveInfinity();
          } else if (values.hasAnyNegativeInfinity()) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top