Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Ying (0.5 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * <br><br>
             *
             * If acquiring the lock for the state region fails, we read information region and get the port (if present) and we send a ping request to the owner
             * (see {@link FileLockContentionHandler#maybePingOwner(int, long, String, long, FileLockReleasedSignal)} how ping algorithm is done).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcs/vcs.go

    				os.Stderr.Write(ee.Stderr)
    			} else {
    				fmt.Fprintln(os.Stderr, err.Error())
    			}
    		}
    	}
    	return out, err
    }
    
    // Ping pings to determine scheme to use.
    func (v *Cmd) Ping(scheme, repo string) error {
    	// Run the ping command in an arbitrary working directory,
    	// but don't let the current working directory pollute the results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

       * {@code Ping-From}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_FROM = "Ping-From";
      /**
       * The HTTP <a href="http://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing">
       * {@code Ping-To}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_TO = "Ping-To";
    
      /**
       * The HTTP <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/HttpHeaders.java

       * {@code Ping-From}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_FROM = "Ping-From";
      /**
       * The HTTP <a href="http://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing">
       * {@code Ping-To}</a> header field name.
       *
       * @since 19.0
       */
      public static final String PING_TO = "Ping-To";
    
      /**
       * The HTTP <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                }
    
                tasks.register("lock", FileLocker)
            """
        }
    
        def cleanup() {
            socketReceiverThread?.terminate = true
        }
    
        def "the lock holder is not hammered with ping requests for the shared lock"() {
            given:
            setupLockOwner()
            def pingRequestCount = 0
            //do not handle requests: this simulates the situation were pings do not arrive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            String field = settings.array().get(SuggestSettings.DefaultKeys.SUPPORTED_FIELDS)[0];
    
            Map<String, Object> document = new HashMap<>();
            document.put(field, "Sing the Supercalifragilisticexpialidocious for Honorificabilitudinitatibus");
            suggester.indexer().indexFromDocument(new Map[] { document });
            suggester.refresh();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. src/main/config/openapi/openapi-user.yaml

              
      /health:
        get:
          tags:
            - monitor
          summary: Check a server status
          description: Returns status
          operationId: ping
          responses:
            '200':
              description: Successful operation
              content:
                application/json:
                  schema:
                    type: object
                    properties:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            run 'consumer'
            then:
            executedAndNotSkipped(":producer", ":consumer")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/16775")
        def "orElse does not cause error when map-ing a task property"() {
            buildFile """
                abstract class Producer extends DefaultTask {
                    @OutputDirectory
                    abstract DirectoryProperty getOutput()
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    api.cors.allow.methods=GET, POST, OPTIONS, DELETE, PUT
    api.cors.max.age=3600
    api.cors.allow.headers=Origin, Content-Type, Accept, Authorization, X-Requested-With
    api.cors.allow.credentials=true
    api.jsonp.enabled=false
    api.ping.search_engine.fields=status,timed_out
    
    
    # Virtual Host: Host:fess.codelibs.org=fess
    virtual.host.headers=
    
    http.proxy.host=
    http.proxy.port=8080
    http.proxy.username=
    http.proxy.password=
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    			bl := &syntax.BlockStmt{
    				List: stmts,
    			}
    			setPos(bl, x.Pos())
    			return bl
    		}
    
    		ret = &syntax.ReturnStmt{Results: r.useObj(r.false)}
    
    		// The loop inside the one we are break/continue-ing
    		// needs to make that happen when we break out of it.
    		if x.Tok == syntax.Continue {
    			r.forStack[exitFrom].checkContinue = true
    		} else {
    			exitFrom = i // exitFrom--
    			r.forStack[exitFrom].checkBreak = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top