Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 322 for hit (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            try {
                zos.putNextEntry(entry);
                SearchEngineUtil.scroll(index, hit -> {
                    final String data = "{\"index\":{\"_index\":\"" + index + "\",\"_id\":\"" + StringEscapeUtils.escapeJson(hit.getId())
                            + "\"}}\n" + hit.getSourceAsString() + "\n";
                    try {
                        zos.write(data.getBytes(Constants.CHARSET_UTF_8));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/go/doc/testdata/examples/iota.go

    // must keep all of them because of the iota. The second group of constants can
    // be trimmed. The third has an iota, but is unused, so it can be eliminated.
    
    func Example() {
    	_ = b
    	_ = d
    }
    
    // Need two examples to hit the playExample function.
    
    func Example2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 596 bytes
    - Viewed (0)
  3. .github/workflows/test.yml

          - name: Install Dependencies
            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-tests.txt
          - name: Install Pydantic v2
            run: pip install "pydantic>=2.0.2,<3.0.0"
          - name: Lint
            run: bash scripts/lint.sh
    
      test:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/merge_node_with_function.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-upgrade-legacy %s
    
    # This is a stripped down GraphDef of the model from b/175240312. To hit the
    # bug, the GraphDef needs to have functions in the library and also a Merge node
    # to go into certain part of the functionalization code where it crashes.
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_BOOL
        }
      }
    }
    node {
      name: "Switch0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 14 20:47:36 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_coverpkg_partial.txt

    # and covered percent should be 6/7 (we hit everything in the
    # coverpkg pattern except the func in "d").
    go test -coverprofile=bar.p -coverpkg=./... ./e
    stdout '^ok\s+M/e\s+\S+\s+coverage: 85.7% of statements in ./...'
    
    # Test b and f with -coverpkg set to a/d/f. Total of 6 statements
    # in a/d/f, again we hit everything except DFunc.
    go test -coverprofile=baz.p -coverpkg=./a,./d,./f ./b ./f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:12:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyChangingModuleRemoteResolveIntegrationTest.groovy

            module.publish()
            def moduleB = ivyHttpRepo.module("group", "projectB", "2.0").publish()
    
            and: "Server handles requests"
            server.resetExpectations()
            // Server will be hit to get updated versions
            module.ivy.expectHead()
            module.ivy.sha1.expectGet()
            module.ivy.expectGet()
            module.jar.expectHead()
            module.getArtifact(name: 'other').expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. cmd/dynamic-timeouts.go

    	return dt.retryInterval
    }
    
    // LogSuccess logs the duration of a successful action that
    // did not hit the timeout
    func (dt *dynamicTimeout) LogSuccess(duration time.Duration) {
    	dt.logEntry(duration)
    }
    
    // LogFailure logs an action that hit the timeout
    func (dt *dynamicTimeout) LogFailure() {
    	dt.logEntry(maxDuration)
    }
    
    // logEntry stores a log entry
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 19 23:21:05 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. src/runtime/runtime-lldb_test.go

          else:
            print "Timeout launching"
          break
        if state == lldb.eStateStopped:
          for t in process.threads:
            if t.GetStopReason() == lldb.eStopReasonBreakpoint:
              print "Hit breakpoint"
              frame = t.GetFrameAtIndex(0)
              if frame:
                if frame.line_entry:
                  print "Stopped at %s:%d" % (frame.line_entry.file.basename, frame.line_entry.line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/runtime/pprof/proto_test.go

    			if err != nil {
    				t.Fatalf("failed to parse the generated profile data: %v", err)
    			}
    			t.Logf("Profile: %s", prof)
    
    			hit := make(map[*profile.Mapping]bool)
    			miss := make(map[*profile.Mapping]bool)
    			for _, loc := range prof.Location {
    				if symbolized(loc) {
    					hit[loc.Mapping] = true
    				} else {
    					miss[loc.Mapping] = true
    				}
    			}
    			if len(miss) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. tests/integration/security/util/reachability/context.go

    						destinationSets := []echo.Instances{
    							A,
    							B,
    							// only hit same network headless services
    							match.Network(from.Config().Cluster.NetworkName()).GetMatches(Headless),
    							// only hit same cluster multiversion services
    							match.Cluster(from.Config().Cluster).GetMatches(Multiversion),
    							// only hit same cluster naked services
    							match.Cluster(from.Config().Cluster).GetMatches(Naked),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
Back to top