Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 275 for toGetter (0.36 sec)

  1. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //
      // If multiple ValidatingAdmissionPolicyBinding resources match an
      // API request, then the valueExpression will be evaluated for
      // each binding. All unique values produced by the valueExpressions
      // will be joined together in a comma-separated list.
      //
      // Required.
      optional string valueExpression = 2;
    }
    
    // ExpressionWarning is a warning information that targets a specific expression.
    message ExpressionWarning {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/BUILD

        ],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            ":tfr-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginCrossVersionSmokeTest.kt

            )
        }
    
        private
        fun expectKotlinDslPluginDeprecation() {
            executer.expectDocumentedDeprecationWarning(
                "Using the `kotlin-dsl` plugin together with Kotlin Gradle Plugin < 1.8.0. " +
                    "This behavior has been deprecated. " +
                    "This will fail with an error in Gradle 9.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/runtime/mranges.go

    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // addrRange represents a region of address space.
    //
    // An addrRange must never span a gap in the address space.
    type addrRange struct {
    	// base and limit together represent the region of address space
    	// [base, limit). That is, base is inclusive, limit is exclusive.
    	// These are address over an offset view of the address space on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    func TestBootstrapTokenToSecret(t *testing.T) {
    	var tests = []struct {
    		bt     *BootstrapToken
    		secret *v1.Secret
    	}{
    		{
    			&BootstrapToken{ // all together
    				Token:       &BootstrapTokenString{ID: "abcdef", Secret: "abcdef0123456789"},
    				Description: "foo",
    				Expires: &metav1.Time{
    					Time: refTime,
    				},
    				Usages: []string{"signing", "authentication"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

            }
    
            return length;
        }
    
        /*
         * We overload this because we want readAndXWireFormat to
         * read the parameter words and bytes. This is so when
         * commands are batched together we can recursivly call
         * readAndXWireFormat without reading the non-existent header.
         */
    
        int decode( byte[] buffer, int bufferIndex ) {
            int start = headerStart = bufferIndex;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/server.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package app does all of the work necessary to create a Kubernetes
    // APIServer by binding together the API, master and APIServer infrastructure.
    // It can be configured and called directly or via the hyperkube framework.
    package app
    
    import (
    	"context"
    	"fmt"
    	"net/url"
    	"os"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

            return ScalaRuntimeHelper.getScalaVersion(scalaJar);
        }
    
        /**
         * Determines Scala bridge jar to download. In Scala 3 it is released for each Scala
         * version together with the compiler jars. For Scala 2 we download sources jar and compile
         * it later on.
         *
         * @param scalaVersion version of scala to download the bridge for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/tasks/GenerateModuleMetadata.java

            return publication.get();
        }
    
        // TODO - this should be an input
    
        /**
         * Returns the publications of the current project, used in generation to connect the modules of a component together.
         *
         * @since 4.4
         */
        @Internal
        public ListProperty<Publication> getPublications() {
            return publications.get();
        }
    
        @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top