Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 441 for Builds (0.16 sec)

  1. CONTRIBUTING.md

    The build cache has anonymous read access, so you don't need to authenticate in order to use it. You can use a different build cache node by specifying `-DcacheNode=us` for a build cache node in the US or `-DcacheNode=au` for a build cache node in Australia.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/extension/wasmplugin.go

    				ConfigSource: defaultConfigSource,
    				TypeUrls: []string{
    					xds.WasmNetworkFilterType,
    					xds.RBACNetworkFilterType,
    				},
    			},
    		},
    	}
    }
    
    // InsertedExtensionConfigurations builds added via WasmPlugin.
    func InsertedExtensionConfigurations(
    	wasmPlugins []*model.WasmPluginWrapper,
    	names []string, pullSecrets map[string][]byte,
    ) []*core.TypedExtensionConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. Makefile.core.mk

    # This target should be expanded upon as we add more Linux architectures: i.e. build-arm64.
    # Then a new build target can be created such as build-container-bin that builds these
    # various platform images.
    .PHONY: build-linux
    build-linux: depend
    	GOOS=linux GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $(TARGET_OUT_LINUX)/ -tags=$(STANDARD_TAGS) $(STANDARD_BINARIES)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. .github/workflows/maven.yml

          - name: Build with Maven
            run: ./mvnw verify -e -B -V -DdistributionFileName=apache-maven
    
          - name: Upload built Maven
            uses: actions/upload-artifact@v4
            if: ${{ matrix.os == 'ubuntu-latest' }}
            with:
              name: built-maven
              path: apache-maven/target/
    
      integration-test:
        needs: build
        strategy:
          matrix:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

            @Provides
            fun createTaskExecutionAccessChecker(
                configurationTimeBarrier: ConfigurationTimeBarrier,
                modelParameters: BuildModelParameters,
                /** In non-CC builds, [ConfigurationCacheStartParameter] is not registered; accepting a list here is a way to ignore its absence. */
                configurationCacheStartParameter: List<ConfigurationCacheStartParameter>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/ReservedProjectNamesCrossVersionSpec.groovy

            projects.collect({ it.name }).contains("root-explicitName")
            !projects.collect({ it.name }).contains("explicitName")
        }
    
        def "Reserved names work in composite builds"() {
            given:
            settingsFile << """
                    includeBuild 'includedBuild1'
                    includeBuild 'includedBuild2'
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/retry/retry.go

    			codes = append(codes, uint32(i))
    		} else {
    			tojoin = append(tojoin, part)
    		}
    	}
    
    	return strings.Join(tojoin, ","), codes
    }
    
    // buildPreviousPrioritiesConfig builds a PreviousPrioritiesConfig with a default
    // value for UpdateFrequency which indicated how often to update the priority.
    func buildPreviousPrioritiesConfig() *previouspriorities.PreviousPrioritiesConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/values.yaml

      revision: ""
    
      # For Helm compatibility.
      ownerName: ""
    
      global:
        # Default hub for Istio images.
        # Releases are published to docker hub under 'istio' project.
        # Dev builds from prow are on gcr.io
        hub: gcr.io/istio-testing
    
        # Default tag for Istio images.
        tag: latest
    
        # Variant of the image to use.
        # Currently supported are: [debug, distroless]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. .teamcity/pom.xml

            <junit.version>5.8.1</junit.version>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <dslContextParameter.branch>master</dslContextParameter.branch>
        </properties>
        <groupId>Gradle_Check</groupId>
        <artifactId>Gradle_Check_dsl</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:44:21 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. build/lib/release.sh

            local build_log="${docker_build_path}/build.log"
            if ! DOCKER_CLI_EXPERIMENTAL=enabled "${DOCKER[@]}" buildx build \
              -f "${docker_file_path}" \
              --platform linux/"${arch}" \
              --load ${docker_build_opts:+"${docker_build_opts}"} \
              -t "${docker_image_tag}" \
              --build-arg BASEIMAGE="${base_image}" \
              --build-arg SETCAP_IMAGE="${KUBE_BUILD_SETCAP_IMAGE}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top