Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 204 for v110 (0.07 sec)

  1. samples/bookinfo/src/productpage/requirements.txt

    idna==3.7 \
        --hash=sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc \
        --hash=sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0
        # via requests
    importlib-metadata==6.11.0 \
        --hash=sha256:1231cf92d825c9e03cfc4da076a16de6422c863558229ea0b22b675657463443 \
        --hash=sha256:f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b
        # via opentelemetry-api
    itsdangerous==2.2.0 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  2. guava-tests/pom.xml

          <version>4.13.2</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.mockito</groupId>
          <artifactId>mockito-core</artifactId>
          <version>4.11.0</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>com.google.truth</groupId>
          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 19:01:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning.mlir

    // CHECK: tf_executor.NextIteration.Source
    // CHECK: tf_executor.NextIteration.Sink
      %0 = tf_executor.graph {
        %1:3 = tf_executor.NextIteration.Source : i32
        tf_executor.NextIteration.Sink[%1#1] %1#0 : i32
        tf_executor.fetch %1#0 : i32
      }
      func.return %0 : i32
    }
    
    // Check that NextIteration.sink node is deleted when the source does not have
    // any user other than the sink.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/version_test.go

    			remoteVersion: "v1.11.5",
    			clientVersion: "v1.11.0",
    			output:        "v1.11.5",
    		},
    		{
    			name:          "valid: return the same version",
    			remoteVersion: "v1.11.0",
    			clientVersion: "v1.11.0",
    			output:        "v1.11.0",
    		},
    		{
    			name:          "invalid: client version is empty",
    			remoteVersion: "v1.12.1",
    			clientVersion: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

      // CHECK: <{qtype = tensor<3x3x!quant.uniform<i32:f32:1, {1.000000e+00,5.000000e-01:1,2.500000e-01:1}>>, value = dense<1> : tensor<3x3xi32>}> : () -> tensor<3x3x!quant.uniform<i32:f32:1, {1.000000e+00,5.000000e-01:1,2.500000e-01:1}>>
      %0 = "tfl.pseudo_qconst"() { qtype = tensor<3x3x!quant.uniform<i32:f32:1, {1.0, 0.5:1, 0.25:1}>>, value = dense<1> : tensor<3x3xi32>} : () -> tensor<3x3x!quant.uniform<i32:f32:1, {1.0, 0.5:1, 0.25:1}>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    			andMask: "10",
    		},
    		{
    			name:    "Mask 01 AND mask 01 AND mask 10 AND mask 11",
    			masks:   [][]int{{0}, {0}, {1}, {0, 1}},
    			andMask: "00",
    		},
    		{
    			name:    "Mask 1111 AND mask 1110 AND mask 1100 AND mask 1000",
    			masks:   [][]int{{0, 1, 2, 3}, {1, 2, 3}, {2, 3}, {3}},
    			andMask: "1000",
    		},
    	}
    	for _, tc := range tcases {
    		var bitMasks []BitMask
    		for i := range tc.masks {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

        // CHECK:      tf_executor.NextIteration.Sink
        // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:TPU:0"
        tf_executor.NextIteration.Sink [%0#1] %1#0 : tensor<i64> {device = "/job:localhost/replica:0/task:0/device:TPU:0", T = "tfdtype$DT_INT64"}
        tf_executor.fetch %0#2 : !tf_executor.control
      }
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/AbstractMultiBuildIdeIntegrationTest.groovy

        abstract IdeProjectFixture project(TestFile projectDir, String ideProjectName)
    
        @ToBeFixedForConfigurationCache(because = "ide plugins")
        @Issue("https://github.com/gradle/gradle/issues/5110")
        def "buildSrc project can apply IDE plugin"() {
            file("buildSrc/build.gradle") << """
                apply plugin: '${pluginId}'
            """
    
            expect:
            succeeds(":buildSrc:${workspaceTask}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/mock/discovery.go

    				Protocol: protocol.TCP,
    			}, {
    				Name:     "mongo",
    				Port:     100, // target port 1100
    				Protocol: protocol.Mongo,
    			}, {
    				Name:     "redis",
    				Port:     110, // target port 1110
    				Protocol: protocol.Redis,
    			}, {
    				Name:     "mysql",
    				Port:     120, // target port 1120
    				Protocol: protocol.MySQL,
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/cni/cniversionskew_test.go

    )
    
    var (
    	i istio.Instance
    
    	apps = deployment.SingleNamespaceView{}
    )
    
    const (
    	// TODO: replace this with official 1.11 release once available.
    	NMinusOne    = "1.11.0-beta.1"
    	CNIConfigDir = "tests/integration/pilot/testdata/upgrade"
    )
    
    // Currently only test CNI with one version behind.
    var versions = []string{NMinusOne}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top