Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 365 for patching (0.23 sec)

  1. src/cmd/go/testdata/script/mod_vendor_embed.txt

    cd broken_no_matching_files
    ! go mod vendor
    stderr '^go: resolving embeds in example.com/brokendep: pattern foo.txt: no matching files found$'
    go mod vendor -e
    stderr '^go: resolving embeds in example.com/brokendep: pattern foo.txt: no matching files found$'
    
    cd ../broken_bad_pattern
    ! go mod vendor
    stderr '^go: resolving embeds in example.com/brokendep: pattern ../foo.txt: invalid pattern syntax$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcher.java

        }
    
        /**
         * Uses the git diff algorithm for presenting matches.
         * <p>
         * Enabling this option will only show a single match, regardless of how many potential matches
         * containing the same number of matching lines are found.
         *
         * @return searcher that uses a unified diff output
         */
        public static ExhaustiveLinesSearcher useUnifiedDiff() {
            return new ExhaustiveLinesSearcher(true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pilot/test/xdstest/validate.go

    			t.Errorf("nil filter chain %d", i)
    			continue
    		}
    		if fc.FilterChainMatch.TransportProtocol == "" && fc.FilterChainMatch.GetDestinationPort().GetValue() != 15006 {
    			// Not setting transport protocol may lead to unexpected matching behavior due to https://github.com/istio/istio/issues/26079
    			// This is not *always* a bug, just a guideline - the 15006 blocker filter chain doesn't follow this rule and is exluced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue21317.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // As of "Mon 6 Nov 2017", run.go doesn't yet have proper
    // column matching so instead match the output manually
    // by exec-ing
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

     * limitations under the License.
     */
    
    package org.gradle.caching.example;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.inject.Guice;
    import com.google.inject.Inject;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.CacheableEntity;
    import org.gradle.caching.internal.SimpleBuildCacheKey;
    import org.gradle.caching.internal.controller.BuildCacheController;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/net/addrselect.go

    	if !SourceDA.IsValid() && !SourceDB.IsValid() {
    		return false // "equal"
    	}
    	if !SourceDB.IsValid() {
    		return preferDA
    	}
    	if !SourceDA.IsValid() {
    		return preferDB
    	}
    
    	// Rule 2: Prefer matching scope.
    	// If Scope(DA) = Scope(Source(DA)) and Scope(DB) <> Scope(Source(DB)),
    	// then prefer DA.  Similarly, if Scope(DA) <> Scope(Source(DA)) and
    	// Scope(DB) = Scope(Source(DB)), then prefer DB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultJvmVendorSpecTest.groovy

            }
    
            expect:
            assertDoesNotMatch(JvmVendorSpec.IBM, metadata)
            assertDoesNotMatch(JvmVendorSpec.AMAZON, metadata)
            assertMatches(JvmVendorSpec.matching("customjdk"), metadata)
        }
    
        void assertMatches(JvmVendorSpec spec, actualToolchain) {
            assert ((Predicate<JavaToolchain>) spec).test(actualToolchain)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyDescriptor.java

         * dependency will update the version of any dependency with matching GAV.
         * (Same goes for <type> on optional dependencies: they are effectively ignored).
         *
         * Note that this doesn't really match with Maven, where an optional dependency with classifier will
         * provide a version for any other dependency with matching GAV + classifier.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/trie.go

    )
    
    // lookup determines the type of block n and looks up the value for b.
    // For n < t.cutoff, the block is a simple lookup table. Otherwise, the block
    // is a list of ranges with an accompanying value. Given a matching range r,
    // the value for b is by r.value + (b - r.lo) * stride.
    func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
    	offset := t.offset[n]
    	header := t.values[offset]
    	lo := offset + 1
    	hi := lo + uint16(header.lo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    ====
    include::sample[dir="snippets/buildCache/caching-android-projects/kotlin",files="build.gradle.kts[tags=cacheKapt]"]
    include::sample[dir="snippets/buildCache/caching-android-projects/groovy",files="build.gradle[tags=cacheKapt]"]
    ====
    
    == Unit test execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top