Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,665 for count1 (0.09 sec)

  1. tests/soft_delete_test.go

    		t.Errorf("Should find soft deleted record with Unscoped, but got err %s", err)
    	}
    
    	count = 0
    	if DB.Unscoped().Model(&User{}).Where("name = ?", user.Name).Count(&count).Error != nil || count != 1 {
    		t.Errorf("Count soft deleted record, expects: %v, count: %v", 1, count)
    	}
    
    	age = 0
    	if DB.Unscoped().Model(&User{}).Select("age").Where("name = ?", user.Name).Scan(&age).Error != nil || age != user.Age {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/net/tcpconn_keepalive_conf_posix_test.go

    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    		Interval: 3 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: -1,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     -1,
    		Interval: 3 * time.Second,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    		Interval: -1,
    		Count:    -1,
    	},
    	{
    		Enable:   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/custom-grpc-provider-out1.yaml

    Yangmin Zhu <******@****.***> 1618526550 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 15 22:42:30 UTC 2021
    - 873 bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/deny-and-allow-out1.yaml

    Kuat <******@****.***> 1697560546 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 539 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

        }
    
        def withGoodTestClasses(int count) {
            count.times { index ->
                createGoodTestClass(index)
            }
        }
    
        def withFailingTestClasses(int count) {
            count.times { index ->
                createFailingTestClass(index)
            }
        }
    
        def withSkippedTestClasses(int count) {
            count.times { index ->
                createSkippedTestClass(index)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/runtime/pprof/proto.go

    	//	data[0] = 3+n
    	//	data[1] = time stamp (ignored)
    	//	data[2] = count
    	//	data[3:3+n] = stack
    	// If the count is 0 and the stack has length 1,
    	// that's an overflow record inserted by the runtime
    	// to indicate that stack[0] samples were lost.
    	// Otherwise the count is usually 1,
    	// but in a few special cases like lost non-Go samples
    	// there can be larger counts.
    	// Because many samples with the same stack arrive,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  7. src/internal/zstd/huff.go

    			}
    
    			weights[count] = pt.sym
    			count++
    
    			pt = &fseTable[state2]
    
    			if !rbr.fetch(pt.bits) {
    				if count >= 254 {
    					return 0, 0, rbr.makeError("Huffman count overflow")
    				}
    				weights[count] = pt.sym
    				weights[count+1] = fseTable[state1].sym
    				count += 2
    				break
    			}
    
    			v, err = rbr.val(pt.bits)
    			if err != nil {
    				return 0, 0, err
    			}
    			state2 = uint32(pt.base) + v
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskPropertiesIntegrationTest.groovy

                    void go() {
                        println("count = \${count.get()}")
                    }
                }
    
                tasks.create("thing", MyTask) {
                    println("property = \$count")
                    count = 12
                }
            """
    
            when:
            succeeds("thing")
    
            then:
            outputContains("property = task ':thing' property 'count'")
            outputContains("count = 12")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java

        int strCopyLen = len;
        int pos = 0;
        while (count != 0) {
          if ((count & 1) != 0) {
            System.arraycopy(strCopy, 0, array, pos, strCopyLen);
            pos += strCopyLen;
          }
          count >>= 1;
          if (count != 0) {
            System.arraycopy(strCopy, 0, strCopy, strCopyLen, strCopyLen);
            strCopyLen <<= 1;
          }
        }
        return new String(array);
      }
    
      @Benchmark
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:24:24 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ToolingApiLoggingCrossVersionSpec.groovy

            }
            errLogging.count("System.err \u03b1\u03b2") == 1
            errLogging.count("error logging \u03b1\u03b2") == 1
    
            and:
            out.count("lifecycle logging \u03b1\u03b2") == 1
            out.count("warn logging") == 1
            out.count("quiet logging") == 1
            out.count("info") == 0
            out.count("debug") == 0
    
            err.count("warn") == 0
            err.count("quiet") == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top