Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for facts (0.04 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/prove.go

    			r = reverseBits[r]
    		}
    
    		p := pair{v, w, d}
    		oldR, ok := ft.facts[p]
    		if !ok {
    			if v == w {
    				oldR = eq
    			} else {
    				oldR = lt | eq | gt
    			}
    		}
    		// No changes compared to information already in facts table.
    		if oldR == r {
    			return
    		}
    		ft.stack = append(ft.stack, fact{p, oldR})
    		ft.facts[p] = oldR & r
    		// If this relation is not satisfiable, mark it and exit right away
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    	{abcd, "", -1, []string{"a", "b", "c", "d"}},
    	{commas, ",", -1, []string{"1,", "2,", "3,", "4"}},
    	{dots, "...", -1, []string{"1...", ".2...", ".3...", ".4"}},
    	{faces, "☹", -1, []string{"☺☻☹", ""}},
    	{faces, "~", -1, []string{faces}},
    	{faces, "", -1, []string{"☺", "☻", "☹"}},
    	{"1 2 3 4", " ", 3, []string{"1 ", "2 ", "3 4"}},
    	{"1 2 3", " ", 3, []string{"1 ", "2 ", "3"}},
    	{"1 2", " ", 3, []string{"1 ", "2"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/bytes/bytes_test.go

    	{abcd, "", -1, []string{"a", "b", "c", "d"}},
    	{commas, ",", -1, []string{"1", "2", "3", "4"}},
    	{dots, "...", -1, []string{"1", ".2", ".3", ".4"}},
    	{faces, "☹", -1, []string{"☺☻", ""}},
    	{faces, "~", -1, []string{faces}},
    	{faces, "", -1, []string{"☺", "☻", "☹"}},
    	{"1 2 3 4", " ", 3, []string{"1", "2", "3 4"}},
    	{"1 2", " ", 3, []string{"1", "2"}},
    	{"123", "", 2, []string{"1", "23"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    	}
    	*out = uint64(hi)<<32 | uint64(lo)
    	return true
    }
    
    // readUint8LengthPrefixed acts like s.ReadUint8LengthPrefixed, but targets a
    // []byte instead of a cryptobyte.String.
    func readUint8LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
    	return s.ReadUint8LengthPrefixed((*cryptobyte.String)(out))
    }
    
    // readUint16LengthPrefixed acts like s.ReadUint16LengthPrefixed, but targets a
    // []byte instead of a cryptobyte.String.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // candidate and we stop clustering when it hits zero.  This means the
        // initial value for this variable (via --tf_xla_clustering_fuel=N)
        // effectively acts as a "cap" for how much we cluster and we can bisect
        // over this initial value to discover clustering decisions that cause a
        // miscompile or a performance regression.
        std::atomic<int64_t>* fuel;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top