Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 361 for logical (0.53 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicChangesIntegrationTest.groovy

            given:
            def configurationCache = newConfigurationCacheFixture()
            def fixture = fixtureSpec.fixtureForProjectDir(file('build-logic'))
            fixture.setup()
            settingsFile << """
                pluginManagement {
                    includeBuild 'build-logic'
                }
            """
            buildFile << """
                plugins { id('$fixture.pluginId') }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-annotations.test

    String id=31
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/trace/v2/testdata/testprog/annotations.go"
    String id=32
    	data="runtime/trace.WithRegion"
    String id=33
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/annotation.go"
    String id=34
    	data="main.main.func1"
    String id=35
    	data="runtime/trace.Start.func1"
    String id=36
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. .github/workflows/mint/minio-resiliency.yaml

        MINIO_ROOT_PASSWORD: "minio123"
        MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
        MINIO_DRIVE_MAX_TIMEOUT: "5s"
      healthcheck:
        test: ["CMD", "mc", "ready", "local"]
        interval: 5s
        timeout: 5s
        retries: 5
    
    # starts 4 docker containers running minio server instances.
    # using nginx reverse proxy, load balancing, you can access
    # it through port 9000.
    services:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

            and:
            if (isNotConfigCache()) {
                outputContains "Using local directory build cache for build ':i2:i3' (location = ${i3Cache.cacheDir}, removeUnusedEntriesAfter = 7 days)."
            }
            outputContains "Using local directory build cache for the root build (location = ${mainCache.cacheDir}, removeUnusedEntriesAfter = 7 days)."
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/options.go

    	// since the IP is normally the same), we SNAT identified host probes in the host netns to a fixed
    	// APIPA/"link-local" IP.
    	//
    	// It doesn't matter what this IP is, so long as it's not routable and doesn't collide with anything else.
    	//
    	// IPv6 link local ranges are designed to be collision-resistant by default, and so probably never need to be overridden
    	DefaultHostProbeSNATIP   = "169.254.7.127"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.injected

            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/hello
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. docs/debugging/reorder-disks/main.go

    	var node, args string
    
    	flag.StringVar(&node, "local-node-name", "", "the name of the local node")
    	flag.StringVar(&args, "args", "", "arguments passed to MinIO server")
    
    	flag.Parse()
    
    	localDisks, err := filterLocalDisks(node, args)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	if len(localDisks) == 0 {
    		log.Fatal("Fix --local-node-name or/and --args to select local disks.")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyAccessResolver.kt

                }
            }
        }
    
        private
        fun AnalysisScopeView.findLocalAsObjectOrigin(name: String): ObjectOrigin.FromLocalValue? {
            val local = findLocal(name) ?: return null
            val fromLocalValue = ObjectOrigin.FromLocalValue(local.localValue, local.assignment)
            return fromLocalValue
        }
    
        private
        fun findDataProperty(
            receiverType: DataType,
            name: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveMetadata.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.component.local.model;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/RootNode.java

    import com.google.common.collect.ImmutableList;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.RootGraphNode;
    import org.gradle.internal.component.local.model.LocalConfigurationGraphResolveMetadata;
    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    import org.gradle.internal.component.model.DependencyMetadata;
    import org.gradle.internal.component.model.VariantGraphResolveState;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top