Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for tings (0.06 sec)

  1. cmd/kubelet/app/server.go

    			return nil, nil, err
    		}
    		var onHeartbeatFailure func()
    		// Kubelet needs to be able to recover from stale http connections.
    		// HTTP2 has a mechanism to detect broken connections by sending periodical pings.
    		// HTTP1 only can have one persistent connection, and it will close all Idle connections
    		// once the Kubelet heartbeat fails. However, since there are many edge cases that we can't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Once you declare a task’s formal inputs and outputs, Gradle can then infer things about those properties. For example, if an input of one task is set to the output of another, that means the first task depends on the second, right? Gradle knows this and can act upon it.
    
    We’ll look at this feature next and also some other features that come from Gradle knowing things about inputs and outputs.
    
    
    [[sec:inferred_task_dependencies]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

            .pingInterval(Duration.ofMillis(500))
            .build()
    
        // Set up the server to ignore the socket. It won't respond to pings!
        server.enqueue(MockResponse(socketPolicy = StallSocketAtStart))
    
        // Make a call. It'll fail as soon as our pings detect a problem.
        val call = client.newCall(Request(server.url("/")))
        val executeAtNanos = System.nanoTime()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:dependents]]
    == Assembling or building dependents
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    				for _, varID := range state.changedVars.contents() {
    					state.updateVar(VarID(varID), v.Block, BlockStart)
    				}
    				state.changedVars.clear()
    			}
    		}
    
    		// Now examine the block again, handling things other than the
    		// "begins at block start" lifetimes.
    		zeroWidthPending := false
    		prologComplete := false
    		// expect to see values in pattern (apc)* (zerowidth|real)*
    		for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    func (p *parser) parseVerticalBar() {
    	p.concat()
    
    	// The concatenation we just parsed is on top of the stack.
    	// If it sits above an opVerticalBar, swap it below
    	// (things below an opVerticalBar become an alternation).
    	// Otherwise, push a new vertical bar.
    	if !p.swapVerticalBar() {
    		p.op(opVerticalBar)
    	}
    }
    
    // mergeCharClass makes dst = dst|src.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    			// then we have a conflict, since one is deleting or replacing the whole map,
    			// and the other is doing things to individual keys.
    			if okLeft != okRight {
    				return true, nil
    			}
    			// if they both have markers, but they are not the same directive,
    			// then we have a conflict because they're doing different things to the map.
    			if leftMarker != rightMarker {
    				return true, nil
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    		//
    		// TODO: This would be cleaner if sysReserve could be
    		// told to only return the requested address. In
    		// particular, this is already how Windows behaves, so
    		// it would simplify things there.
    		if v != nil {
    			sysFreeOS(v, n)
    		}
    		*hintList = hint.next
    		h.arenaHintAlloc.free(unsafe.Pointer(hint))
    	}
    
    	if size == 0 {
    		if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          }
        } else {
          use.getUser()->emitOpError() << "non while use of function.";
          return LogicalResult::failure();
        }
      }
      // TODO(bfontain): If the while op is not present we could just split things
      // or we wait until the compiler supports multiple regions?
      if (while_op == nullptr) {
        body_func.emitOpError() << "unable to find while body user.";
        return LogicalResult::failure();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/copy/groovy",files="settings.gradle[tags=change-default-exclusions]"]
    ====
    
    IMPORTANT: Gradle does not support changing default excludes during the execution phase.
    
    You can do many of the same things with file trees that you can with file collections:
    
    * iterate over them (depth first)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top