Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for conf3 (0.05 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. 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK-NEXT: return %[[RES1]], %[[RES2]], %[[CON3]] : tensor<2xf32>, tensor<2xf32>, tensor<2xf32>
      %con1 = "tf.Const"() { value = dense<[1.0, 2.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con2 = "tf.Const"() { value = dense<[10.0, 0.0]> : tensor<2xf32> } : () -> tensor<2xf32>
      %con3 = "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)
  5. 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)
  6. 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)
  7. src/net/http/serve_test.go

    		t.Fatal(err)
    	}
    	conf := &tls.Config{
    		// GetConfigForClient requires specifying a full tls.Config so we must set
    		// NextProtos ourselves.
    		NextProtos:   []string{"h2"},
    		Certificates: []tls.Certificate{cert},
    	}
    	testAutomaticHTTP2_ListenAndServe(t, &tls.Config{
    		GetConfigForClient: func(clientHello *tls.ClientHelloInfo) (*tls.Config, error) {
    			return conf, nil
    		},
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    			protocol: "tcp",
    		},
    		{
    			name:     "udp ipv6",
    			ips:      ipv6,
    			expected: []string{ipv6},
    			protocol: "udp",
    		},
    		{
    			// We should only capture traffic to servers in /etc/resolv.conf nameservers
    			// This checks we do not capture traffic to other servers.
    			// This is important for cases like app -> istio dns server -> dnsmasq -> upstream
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top