Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,293 for withZip (0.17 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    			}
    
    			// Otherwise, endpoints are only discoverable from within the same cluster.
    			return model.DiscoverableFromSameCluster
    		}
    
    		// Set the discoverability policy for the cluster.local host.
    		if features.EnableMCSClusterLocal {
    			// MCS cluster.local mode is enabled. Allow endpoints for the cluster.local host to be
    			// discoverable only from within the same cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmFeatureTest.groovy

            f1.withJavadocJar()
            f1.withSourcesJar()
            f1.withApi()
            f1.withSourceElements()
    
            f2.withJavadocJar()
            f2.withSourcesJar()
            f2.withApi()
            f2.withSourceElements()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

    // collecting operands not contained within `been_defined`. If we encounter an
    // operand that references a Value that has been defined (and added to
    // `been_defined`) it is garuanteed that the Value definition is not contained
    // in descedant node of reference, and given that the input DAG is valid, the
    // definition is self-contained within `op` so it is not depended upon.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. CREDITS

              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
              as part of the Derivative Works; within the Source form or
              documentation, if provided along with the Derivative Works; or,
              within a display generated by the Derivative Works, if and
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // license that can be found in the LICENSE file.
    
    // Package loopclosure defines an Analyzer that checks for references to
    // enclosing loop variables from within nested functions.
    //
    // # Analyzer loopclosure
    //
    // loopclosure: check references to loop variables from within nested functions
    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/runtime/debug/example_monitor_test.go

    func ExampleSetCrashOutput_monitor() {
    	appmain()
    
    	// This Example doesn't actually run as a test because its
    	// purpose is to crash, so it has no "Output:" comment
    	// within the function body.
    	//
    	// To observe the monitor in action, replace the entire text
    	// of this comment with "Output:" and run this command:
    	//
    	//    $ go test -run=ExampleSetCrashOutput_monitor runtime/debug
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    group = "gradlebuild"
    
    description = "Provides plugins used to create a Gradle plugin with Groovy or Kotlin DSL within build-logic builds"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        compileOnly("com.gradle:develocity-gradle-plugin:3.17.4")
    
        api(platform(project(":build-platform")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 977 bytes
    - Viewed (0)
  8. licenses/sigs.k8s.io/yaml/LICENSE

              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
              as part of the Derivative Works; within the Source form or
              documentation, if provided along with the Derivative Works; or,
              within a display generated by the Derivative Works, if and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/context.kt

            is DataTypeRef.Type -> dataTypeRef.dataType
        }
    }
    
    
    /**
     * Represents a unique operation within a particular generation.  The invocation id should be unique within a single
     * interpretation step, but not across generations (i.e. two operations in different generations may have the same
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcshared/testdata/libgo5/libgo5.go

    	signal.Reset(syscall.SIGIO)
    }
    
    // AwaitSIGIO blocks indefinitely until a SIGIO is reported.
    //
    //export AwaitSIGIO
    func AwaitSIGIO() {
    	<-sigioChan
    }
    
    // SawSIGIO reports whether we saw a SIGIO within a brief pause.
    //
    //export SawSIGIO
    func SawSIGIO() bool {
    	timer := time.NewTimer(100 * time.Millisecond)
    	select {
    	case <-sigioChan:
    		timer.Stop()
    		return true
    	case <-timer.C:
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 986 bytes
    - Viewed (0)
Back to top