Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for conf1 (0.74 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
    
                configurations {
                    conf
                }
                dependencies {
                    conf 'org:b:1.0'
                    conf 'org:c:1.0'
                    conf 'org:d:1.0'
                }
            """
    
            when:
            run "dependencyInsight", "--dependency", "leaf", "--configuration", "conf"
    
            then:
            outputContains """
    org:leaf:1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      CLOUD_CONFIG_VOLUME=""
      CLOUD_CONFIG_MOUNT=""
      if [[ -f /etc/gce.conf ]]; then
        CLOUD_CONFIG_OPT="--cloud-config=/etc/gce.conf"
        CLOUD_CONFIG_VOLUME="{\"name\": \"cloudconfigmount\",\"hostPath\": {\"path\": \"/etc/gce.conf\", \"type\": \"FileOrCreate\"}},"
        CLOUD_CONFIG_MOUNT="{\"name\": \"cloudconfigmount\",\"mountPath\": \"/etc/gce.conf\", \"readOnly\": true},"
      fi
      DOCKER_REGISTRY="registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %con11 = "tf.Const"() { value = dense<[1.0, 2.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con12 = "tf.Const"() { value = dense<[3.0, 4.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con21 = "tf.Const"() { value = dense<[0.0, 2.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con22 = "tf.Const"() { value = dense<[0.0, 0.0]> : tensor<2xf32> } : () -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    archiveBaseName = name
                }
    
                ["api1", "api2"].each { conf ->
                    tasks.register("resolve\$conf", Copy) {
                        duplicatesStrategy = 'INCLUDE'
                        def artifacts = configurations."\$conf".incoming.artifactView {
                            attributes { it.attribute(artifactType, 'transformed') }
                        }.artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        fi
        if [[ "${MASTER_OS_DISTRIBUTION}" == "ubuntu" ]]; then
          # Configure the file path for host dns configuration
          # as ubuntu uses systemd-resolved
          flags+=" --resolv-conf=/run/systemd/resolve/resolv.conf"
        fi
      else # For nodes
        flags+=" ${NODE_KUBELET_TEST_ARGS:-}"
        flags+=" --bootstrap-kubeconfig=/var/lib/kubelet/bootstrap-kubeconfig"
        flags+=" --kubeconfig=/var/lib/kubelet/kubeconfig"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    server # if want to see them you need change global.logging.level with cni:debug logLevel: debug # Configuration file to insert istio-cni plugin configuration # by default this will be the first file found in the cni-conf-dir # Example # cniConfFileName: 10-calico.conflist # CNI bin and conf dir override settings # defaults: cniBinDir: "" # Auto-detected based on version; defaults to /opt/cni/bin. cniConfDir: /etc/cni/net.d cniConfFileName: "" # This directory must exist on the node, if it does not, consult...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    	db.SetMaxOpenConns(3)
    
    	ctx := context.Background()
    
    	conn0, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn1, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn2, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// check node capabilities since the mount path is not the default
    	if len(experimentalMounterPath) != 0 {
    		// Replace the nameserver in containerized-mounter's rootfs/etc/resolv.conf with kubelet.ClusterDNS
    		// so that service name could be resolved
    		klet.dnsConfigurer.SetupDNSinContainerizedMounter(experimentalMounterPath)
    	}
    
    	// setup volumeManager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    		http2server.IncNonDefault()
    		return
    	}
    	// Enable HTTP/2 by default if the user hasn't otherwise
    	// configured their TLSNextProto map.
    	if srv.TLSNextProto == nil {
    		conf := &http2Server{}
    		srv.nextProtoErr = http2ConfigureServer(srv, conf)
    	}
    }
    
    // TimeoutHandler returns a [Handler] that runs h with the given time limit.
    //
    // The new Handler calls h.ServeHTTP to handle each request, but if a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/encoding/json/testdata/code.json.gz

    :1229032241,"max_t":1297181843,"mean_t":1266525459},{"name":"test_shell_request_context.cc","kids":[],"cl_weight":0.19497448979591836,"touches":8,"min_t":1286464738,"max_t":1290454398,"mean_t":1288881709},{"name":"resources","kids":[{"name":"fonts.conf","kids":[],"cl_weight":3,"touches":3,"min_t":1275419640,"max_t":1276288177,"mean_t":1275997624},{"name":"linux-fontconfig-config","kids":[],"cl_weight":2.15,"touches":6,"min_t":1227126184,"max_t":1269528684,"mean_t":1241311607}],"cl_weight":5.15,"...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top