Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Fact (0.21 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    type pair struct {
    	// a pair of values, ordered by ID.
    	// v can be nil, to mean the zero value.
    	// for booleans the zero value (v == nil) is false.
    	v, w *Value
    	d    domain
    }
    
    // fact is a pair plus a relation for that pair.
    type fact struct {
    	p pair
    	r relation
    }
    
    // a limit records known upper and lower bounds for a value.
    type limit struct {
    	min, max   int64  // min <= value <= max, signed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    				}
    			}
    
    			match = true
    			if dest.Weight > 0 {
    				fact := fmt.Sprintf("Route to host \"%s\"", dest.Destination.Host)
    				if dest.Destination.Subset != "" {
    					fact = fmt.Sprintf("%s subset \"%s\"", fact, dest.Destination.Subset)
    				}
    				fact = fmt.Sprintf("%s with weight %d%%", fact, dest.Weight)
    				facts = append(facts, fact)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    The difference is that Gradle _may_ discover more dependencies and artifacts depending on the tasks you execute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    These objects have methods that allow you to specify files, directories and values which constitute the task’s inputs and outputs.
    In fact, the runtime API has almost feature parity with the annotations.
    
    It lacks equivalents for
    
    * `@link:{javadocPath}/org/gradle/api/tasks/Nested.html[Nested]`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    		// aka MIPS_FPABI_ANY. If we mark the object as FPXX, the kernel may use FR=1 mode,
    		// then we meet some problem.
    		// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    		//       It is not for 'ANY'.
    		// TODO: switch to FPXX after be sure that no odd-number-fpr is used.
    		ctxt.Out.Write8(MIPS_FPABI_ANY) // fpAbi
    	}
    	ctxt.Out.Write32(0) // isaExt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    		}
    		return i, pallocChunkPages - 1
    	}
    	// Clear searchAddr, because we've exhausted the heap.
    	cursor.Clear()
    	return 0, 0
    }
    
    // alloc updates metadata for chunk at index ci with the fact that
    // an allocation of npages occurred. It also eagerly attempts to collapse
    // the chunk's memory into hugepage if the chunk has become sufficiently
    // dense and we're not allocating the whole chunk at once (which suggests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // We also need to add the implicit capability if it was seen before as an explicit
            // capability in order to detect the conflict between the two.
            // Note that the fact that the implicit capability is not included in other cases
            // is not a bug but a performance optimization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Mapping plugin IDs to dependency coordinates
    ====
    include::sample[dir="snippets/kotlinDsl/androidSingleBuild/kotlin",files="settings.gradle.kts[tags=android];build.gradle.kts[tags=android]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          continue;
        }
    
        // We assume that functional If and While nodes have at least
        // min_cluster_size non-trivial nodes in them.  It would be more principled
        // to (recursively) verify this fact, but that's probably not worth the
        // trouble.
    
        if (cluster->effective_cluster_size() >= debug_options_.min_cluster_size ||
            cluster->has_functional_control_flow() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    	"internal/bytealg"
    	"internal/goarch"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // The code in this file implements stack trace walking for all architectures.
    // The most important fact about a given architecture is whether it uses a link register.
    // On systems with link registers, the prologue for a non-leaf function stores the
    // incoming value of LR at the bottom of the newly allocated stack frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top