Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for publishing (0.17 sec)

  1. build/dependencies.yaml

      # Golang
      - name: "golang: upstream version"
        version: 1.22.4
        refPaths:
        - path: .go-version
        - path: build/build-image/cross/VERSION
        - path: staging/publishing/rules.yaml
          match: 'default-go-version\: \d+.\d+(alpha|beta|rc)?\.?(\d+)?'
        - path: test/images/Makefile
          match: GOLANG_VERSION=\d+.\d+(alpha|beta|rc)?\.?\d+
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    consumablePlatformVariant("runtimePlatform", listOf(coreRuntimeOnly, pluginsRuntimeOnly))
    
    // A lifecycle task to build all the distribution zips for publishing
    val buildDists by tasks.registering
    
    configureDistribution("normalized", binDistributionSpec(), buildDists, true)
    configureDistribution("bin", binDistributionSpec(), buildDists)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/net/lookup.go

    // by weight within a priority.
    //
    // LookupSRV constructs the DNS name to look up following RFC 2782.
    // That is, it looks up _service._proto.name. To accommodate services
    // publishing SRV records under non-standard names, if both service
    // and proto are empty strings, LookupSRV looks up name directly.
    //
    // The returned service names are validated to be properly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                    plugins {
                        id("java-gradle-plugin")
                        id("maven-publish")
                    }
                    group = "com.example"
                    version = "1.0"
                    publishing {
                        repositories {
                            maven { url '$mavenRepo.uri' }
                        }
                    }
                    gradlePlugin {
                        plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    The release tag will contain the lock states, allowing that build to be fully reproducible when bug fixes need to be developed.
    
    Combined with <<publishing_maven.adoc#publishing_maven:resolved_dependencies,publishing resolved versions>>, you can also replace the declared dynamic version part at publication time.
    Consumers will instead see the versions that your release resolved.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    		return h
    	}
    	n := len(data) / 2
    	return NodeHash(tileHash(data[:n]), tileHash(data[n:]))
    }
    
    // NewTiles returns the coordinates of the tiles of height h ≥ 1
    // that must be published when publishing from a tree of
    // size newTreeSize to replace a tree of size oldTreeSize.
    // (No tiles need to be published for a tree of size zero.)
    //
    // If h ≤ 0, NewTiles panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                    version = '$version'
    
                    dependencies {
                        implementation localGroovy()
                        implementation gradleApi()
                    }
    
                    publishing {
                        repositories {
                            maven {
                                url "${mavenRepo.uri}"
                            }
                        }
                        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                plugins {
                    id("java-gradle-plugin")
                    id("maven-publish")
                }
    
                group = "$pluginId"
                version = "1.0"
    
                publishing {
                    repositories {
                        maven {
                            url '${mavenRepo.uri}'
                        }
                    }
                }
    
                gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_plugin.go

    		if lastErr == nil || apierrors.IsNotFound(lastErr) {
    			// API server contacted
    			return true, nil
    		}
    		klog.V(2).Infof("Failed to contact API server when waiting for CSINode publishing: %s", lastErr)
    		return false, nil
    	})
    	if err != nil {
    		// In theory this is unreachable, but just in case:
    		return fmt.Errorf("%v: %v", err, lastErr)
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Annotations to add to the egress gateway service.
      google.protobuf.Struct serviceAnnotations = 17;
    
      // Service type.
      //
      // See https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      string type = 18;
    
      // Enables cross-cluster access using SNI matching.
      ZeroVPNConfig zvpn = 19;
    
      repeated k8s.io.api.core.v1.Toleration tolerations = 20 [deprecated = true];
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top