Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for ind2 (0.34 sec)

  1. cmd/bucket-replication-utils_test.go

    		expErr: nil,
    		expDsc: ReplicateDecision{
    			targetsMap: map[string]replicateTargetDecision{
    				"arn:minio:replication::id:bucket":  newReplicateTargetDecision("arn:minio:replication::id:bucket", true, false),
    				"arn:minio:replication::id2:bucket": newReplicateTargetDecision("arn:minio:replication::id2:bucket", false, true),
    			},
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 08 20:27:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. hack/testdata/recursive/deployment/deployment/nginx-broken.yaml

    apiVersion: apps/v1
    ind: Deployment
    metadata:
      name: nginx2-deployment
      labels:
        app: nginx2-deployment
    spec:
      replicas: 2
      selector:
        matchLabels:
          app: nginx2
      template:
        metadata:
          labels:
            app: nginx2
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:1.7.9
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 370 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/id/ConfigurationCacheableIdFactoryTest.groovy

        def "creating ids again after loading is not allowed"() {
            def factory = new ConfigurationCacheableIdFactory()
    
            when:
            def id1 = factory.createId()
            def id2 = factory.createId()
            then:
            id1 != id2
    
            when:
            factory.idRecreated()
            factory.idRecreated()
            then:
            noExceptionThrown()
    
            when:
            factory.createId()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 15:27:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/DynamicGroovyPluginMixin.groovy

                        }
                    }
                }
            """
    
            file("buildSrc/build.gradle") << """
            compileGroovy {
                groovyOptions.optimizationOptions.indy = $enableIndy
            }
            """
    
            buildScript("""
                apply plugin: SomePlugin
            """)
        }
    
        abstract TestFile file(Object... path)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

          %id1 = "tf.Identity"(%id0) : (!tf_res)
            -> !tf_res
          // CHECK-NEXT: "tf.Identity"
          // CHECK-SAME: {device = "/CPU:0"}
          %id2 = "tf.Identity"(%var_handle) : (!tf_res)
            -> !tf_res
          %read = "tf.ReadVariableOp"(%id2) : (!tf_res) -> tensor<32xf32>
          %id3 = "tf.Identity"(%read) : (tensor<32xf32>) -> tensor<32xf32>
          tf_executor.yield
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/tensorflow/tf_to_quant.cc

          id1.replaceAllUsesWith(id1.getInput());
          min = tf_op.getMin();
          rewriter.eraseOp(id1);
        }
        if (auto id2 = dyn_cast_or_null<TF::IdentityOp>(max.getDefiningOp())) {
          id2.replaceAllUsesWith(id2.getInput());
          max = tf_op.getMax();
          rewriter.eraseOp(id2);
        }
        if (!matchPattern(min, m_Constant(&min_value))) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/os/wait6_freebsd_386.go

    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	// freebsd32_wait6_args{ idtype, id1, id2, status, options, wrusage, info }
    	_, _, errno = syscall.Syscall9(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), 0, uintptr(unsafe.Pointer(&status)), uintptr(options), 0, 0, 0, 0)
    	return status, errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 544 bytes
    - Viewed (0)
  8. pkg/kubelet/util/store/filestore_test.go

    }
    
    func testStore(t *testing.T, store Store) {
    	testCases := []struct {
    		key       string
    		data      string
    		expectErr bool
    	}{
    		{
    			"id1",
    			"data1",
    			false,
    		},
    		{
    			"id2",
    			"data2",
    			false,
    		},
    		{
    			"/id1",
    			"data1",
    			true,
    		},
    		{
    			".id1",
    			"data1",
    			true,
    		},
    		{
    			"   ",
    			"data2",
    			true,
    		},
    		{
    			"___",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 24 13:51:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/progress/DefaultProgressLoggerFactoryTest.groovy

            }
            1 * progressListener.started({it.description == "op-2"}) >> { ProgressStartEvent event ->
                id2 = event.progressOperationId
                assert event.parentProgressOperationId == null
            }
    
            and:
            [parentId, childId, id2].toSet().size() == 3
        }
    
        def "operation can have parent running in a different thread"() {
            OperationIdentifier parentId
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

        public GroovyRuntime(Project project) {
            this.project = (ProjectInternal) project;
        }
    
        /**
         * Searches the specified class path for Groovy Jars ({@code groovy(-indy)}, {@code groovy-all(-indy)}) and returns a corresponding class path for executing Groovy tools such as the Groovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top