Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 338 for happen (0.23 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          return resource_var_operation_node_ids_;
        }
    
        string DebugString(const Graph& graph) const {
          Node* node = graph.FindNodeId(cycles_graph_node_id());
          if (!node) {
            // This should never happen but we try to be resilient because this is a
            // debugging aid.
            return absl::StrCat("NULL NODE IN #", cycles_graph_node_id());
          }
    
          if (cluster_size() == 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            StringBuilder sb = new StringBuilder(128);
            sb.append("MavenProject: ");
            sb.append(getGroupId());
            sb.append(':');
            sb.append(getArtifactId());
            sb.append(':');
            sb.append(getVersion());
            if (getFile() != null) {
                sb.append(" @ ");
                sb.append(getFile().getPath());
            }
    
            return sb.toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    		operations := TranslateHeadersOperations(dst.Headers)
    		out.RequestHeadersToAdd = append(out.RequestHeadersToAdd, operations.RequestHeadersToAdd...)
    		out.RequestHeadersToRemove = append(out.RequestHeadersToRemove, operations.RequestHeadersToRemove...)
    		out.ResponseHeadersToAdd = append(out.ResponseHeadersToAdd, operations.ResponseHeadersToAdd...)
    		out.ResponseHeadersToRemove = append(out.ResponseHeadersToRemove, operations.ResponseHeadersToRemove...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/EventListenerTest.kt

      }
    
      @Test
      fun responseBodyFailHttp() {
        responseBodyFail(Protocol.HTTP_1_1)
      }
    
      private fun responseBodyFail(expectedProtocol: Protocol?) {
        // Use a 2 MiB body so the disconnect won't happen until the client has read some data.
        val responseBodySize = 2 * 1024 * 1024 // 2 MiB
        server.enqueue(
          MockResponse.Builder()
            .body(Buffer().write(ByteArray(responseBodySize)))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	MOVQ	g_m(BX), BX
    
    	// Set m->sched.sp = SP, so that if a panic happens
    	// during the function we are about to execute, it will
    	// have a valid SP to run on the g0 stack.
    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    	// but if an unrecovered panic happens, unwindm will
    	// restore the g->sched.sp from the stack location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    func read8(sym interface{}, off int64) uint8 {
    	lsym := sym.(*obj.LSym)
    	if off >= int64(len(lsym.P)) || off < 0 {
    		// Invalid index into the global sym.
    		// This can happen in dead code, so we don't want to panic.
    		// Just return any value, it will eventually get ignored.
    		// See issue 29215.
    		return 0
    	}
    	return lsym.P[off]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/validation/validation_test.go

    	}, {
    		requestVersion:    flowcontrolv1.SchemeGroupVersion,
    		allowZero:         true,
    		concurrencyShares: 1,
    		errExpected:       nil,
    	}, {
    		// this should never really happen in real life, the request
    		// context should always contain the request {group, version}
    		requestVersion:    schema.GroupVersion{},
    		concurrencyShares: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    *This is a feature of specific tasks*!
    That means implicit conversion will not happen for just any task that has a `FileCollection` or `FileTree` property.
    If you want to know whether implicit conversion happens in a particular situation, you will need to read the relevant documentation, such as the corresponding task's API docs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    						status.State),
    					reason: reasonUnknown,
    				}
    				changes.InitContainersToStart = append(changes.InitContainersToStart, i)
    			} else { // init container
    				if !isInitContainerFailed(status) {
    					klog.V(4).InfoS("This should not happen, init container is in unknown state but not failed", "pod", klog.KObj(pod), "containerStatus", status)
    				}
    
    				if !restartOnFailure {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		arg, templateVal := st.templateParamDecl()
    		if arg == nil {
    			break
    		}
    		templateArgs = append(templateArgs, arg)
    		if template == nil {
    			template = &Template{
    				Name: &Name{Name: "lambda"},
    			}
    			st.templates = append(st.templates, template)
    		}
    		template.Args = append(template.Args, templateVal)
    	}
    
    	var templateArgsConstraint AST
    	if len(st.str) > 0 && st.str[0] == 'Q' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top