Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 251 for Answers (0.09 sec)

  1. pilot/pkg/model/network.go

    	// No records or OPT is the only record, return a short ttl as a fail safe.
    	if len(m.Answer)+len(m.Ns) == 0 &&
    		(len(m.Extra) == 0 || (len(m.Extra) == 1 && m.Extra[0].Header().Rrtype == dns.TypeOPT)) {
    		return MinGatewayTTL
    	}
    
    	minTTL := MaxGatewayTTL
    	for _, r := range m.Answer {
    		if r.Header().Ttl < uint32(minTTL.Seconds()) {
    			minTTL = time.Duration(r.Header().Ttl) * time.Second
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    //
    // The [GenerateKey] function generates and returns a new signer
    // and corresponding verifier.
    //
    // # Example
    //
    // Here is a well-formed signed note:
    //
    //	If you think cryptography is the answer to your problem,
    //	then you don't know what your problem is.
    //
    //	— PeterNeumann x08go/ZJkuBS9UG/SffcvIAQxVBtiFupLLr8pAcElZInNIuGUgYN1FFYC2pZSNXgKvqfqdngotpRZb6KE6RyyBwJnAM=
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    == Support
    * **Forum** — The fastest way to get help is through the link:https://discuss.gradle.org/[Gradle Forum].
    * **Slack** — Community members and core contributors answer questions directly on our link:https://gradle-community.slack.com/[Slack Channel].
    
    == Licenses
    [.legalnotice]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/copyelim.go

    	var advance bool
    	for w.Op == OpCopy {
    		w = w.Args[0]
    		if w == slow {
    			w.reset(OpUnknown)
    			break
    		}
    		if advance {
    			slow = slow.Args[0]
    		}
    		advance = !advance
    	}
    
    	// The answer is w.  Update all the copies we saw
    	// to point directly to w.  Doing this update makes
    	// sure that we don't end up doing O(n^2) work
    	// for a chain of n copies.
    	for v != w {
    		x := v.Args[0]
    		v.SetArg(0, w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/README.md

    We use our `iptables` wrapper lib 4 different ways across sidecar and ambient, and in each case "which iptables binary should we use" is a question with a different answer.
    
    | Usage | Using iptables Binaries From | Networking context to select correct binary against |
    | ------------- | ------------- | ------------- |
    | from CNI plugin (sidecar) | host $PATH  | pod netns context |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/lca.go

    	// on the tour from p1 to p2.  We've precomputed minimum
    	// depth blocks for powers-of-two subsequences of the tour.
    	// Combine the right two precomputed values to get the answer.
    	logS := uint(log64(int64(p2 - p1)))
    	bid1 := lca.rangeMin[logS][p1]
    	bid2 := lca.rangeMin[logS][p2-1<<logS+1]
    	if lca.blocks[bid1].depth < lca.blocks[bid2].depth {
    		return lca.blocks[bid1].b
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_flags.txt

    # as packages, even if they are unambiguously not arguments to flags.
    # Even though ./x looks like a package path, the real package should be
    # the implicit '.'.
    ! go test --answer=42 ./x
    stderr '^no Go files in '$PWD'$'
    
    # However, *flags* that appear after unrecognized flags should still be
    # interpreted as flags, under the (possibly-erroneous) assumption that
    # unrecognized flags are non-boolean.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                        groupId = "new-group"
                                        artifactId = "new-artifact-id"
                                        version = "42"
                                        message = "the answer to life, the universe and everything"
                                    }
                                }
                                mailingLists {
                                    mailingList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/AbstractRepositoryMetadataSource.java

                            ((BuildableModuleComponentMetaDataResolveResult<?>) result).redirectToGradleMetadata();
                        } else {
                            throw new IllegalStateException("Unexpected Gradle metadata redirection answer");
                        }
                    }
                    S metadata = parseResult.getResult();
                    File metadataArtifactFile = metadataArtifact.getFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/runtime/softfloat64_test.go

    func hwint32(f float64) float64 {
    	return float64(int32(f))
    }
    
    // float64 -sw-> int64 -hw-> float64
    func toint64sw(f float64) float64 {
    	i, ok := F64toint(math.Float64bits(f))
    	if !ok {
    		// There's no right answer for out of range.
    		// Match the hardware to pass the test.
    		i = int64(f)
    	}
    	return float64(i)
    }
    
    // float64 -hw-> int64 -sw-> float64
    func fromint64sw(f float64) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top