Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for longval (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            ops.size() == 4
            ops[0].details.applicationId == id1.longValue()
            ops[1].details.applicationId == id2.longValue()
            ops[2].details.applicationId == id1.longValue()
            ops[3].details.applicationId == id2.longValue()
        }
    
        def "can add list properties to container"() {
            containerAllowsExternalProviders()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    if (seqNo != null) {
                        builder.setIfSeqNo(seqNo.longValue());
                    }
                    if (primaryTerm != null) {
                        builder.setIfPrimaryTerm(primaryTerm.longValue());
                    }
                    response = builder.execute().actionGet(fessConfig.getIndexIndexTimeout());
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // Replace
    //   (float)OneHot(index, depth, on_val, off_val, axis)
    // With
    //   OneHot(index, depth, (float)on_val, (float)off_val, axis)
    def FuseOneHotAndCastToFloat : Pat<
      (TFL_CastOp:$output (TFL_OneHotOp $indices,
                                        $depth,
                                        (Arith_ConstantOp $on_val),
                                        (Arith_ConstantOp $off_val),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	return func(qs *queueSet) promiseFactory {
    		return func(initial interface{}, doneCtx context.Context, doneVal interface{}) promise.WriteOnce {
    			return testpromise.NewCountingWriteOnce(activeCounter, &qs.lock, initial, doneCtx.Done(), doneVal)
    		}
    	}
    }
    
    func TestTotalRequestsExecutingWithPanic(t *testing.T) {
    	metrics.Register()
    	metrics.Reset()
    	now := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            Integer value = getSearchEngineHeartbeatIntervalAsInteger();
            if (value != null) {
                return value.longValue();
            }
            value = getAsInteger("elasticsearch.heartbeat_interval");
            if (value != null) {
                return value.longValue();
            }
            return 10000L;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  8,
    		},
    		{
    			name:             "enums with maxLength equals to the longest possible value",
    			schemaGenerator:  genEnumWithRuleAndValues("self.contains('A')", "A", "B", "C", "LongValue"),
    			expectedCalcCost: 2,
    			setMaxElements:   1000,
    			expectedSetCost:  401,
    		},
    	}
    	for _, testCase := range cases {
    		t.Run(testCase.name, func(t *testing.T) {
    			// dynamic maxLength case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top