Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 144 for conf1 (0.06 sec)

  1. src/go/types/api.go

    	// This flag will eventually be removed (with Go 1.24 at the earliest).
    	_EnableAlias bool
    }
    
    // Linkname for use from srcimporter.
    //go:linkname srcimporter_setUsesCgo
    
    func srcimporter_setUsesCgo(conf *Config) {
    	conf.go115UsesCgo = true
    }
    
    // Info holds result type information for a type-checked package.
    // Only the information for which a map is provided is collected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K 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. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            if (daemonParameters.isStatus()) {
                return Actions.toAction(showDaemonStatus(daemonParameters));
            }
            if (daemonParameters.isForeground()) {
                ForegroundDaemonConfiguration conf = new ForegroundDaemonConfiguration(
                    UUID.randomUUID().toString(), daemonParameters.getBaseDir(), daemonParameters.getIdleTimeout(), daemonParameters.getPeriodicCheckInterval(), fileCollectionFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

         * This method does <strong>NOT</strong> warn.  This method does <strong>NOT</strong> modify deprecation status.  It
         * is only meant to be called by the container.
         *
         * @param role the role specifying the usage the conf should possess
         */
         void setAllowedUsageFromRole(ConfigurationRole role);
    
        /**
         * Test if the given configuration can either be declared against or extends another
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/godefs.go

    	for name, id := range goIdent {
    		if id.Name == name && strings.Contains(name, "_Ctype_union") {
    			if def := typedef[name]; def != nil {
    				id.Name = gofmt(def)
    			}
    		}
    	}
    
    	conf.Fprint(&buf, fset, f.AST)
    
    	return buf.String()
    }
    
    var gofmtBuf strings.Builder
    
    // gofmt returns the gofmt-formatted string for an AST node.
    func gofmt(n interface{}) string {
    	gofmtBuf.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/go/types/typexpr.go

    				return
    			}
    			x.val = check.iota
    		} else {
    			x.val = obj.val
    		}
    		assert(x.val != nil)
    		x.mode = constant_
    
    	case *TypeName:
    		if !check.conf._EnableAlias && check.isBrokenAlias(obj) {
    			check.errorf(e, InvalidDeclCycle, "invalid use of type alias %s in recursive type (see go.dev/issue/50729)", obj.name)
    			return
    		}
    		x.mode = typexpr
    
    	case *Var:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run.go

    				// in etc/resolv.conf
    				// We avoid redirecting all IP ranges to avoid infinite loops when there are local DNS proxies
    				// such as: app -> istio dns server -> dnsmasq -> upstream
    				// This ensures that we do not get requests from dnsmasq sent back to the agent dns server in a loop.
    				// Note: If a user somehow configured etc/resolv.conf to point to dnsmasq and server X, and dnsmasq also
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    dependencies {
        conf("com.thing:foo:1.0")
        conf("org.example:bar:1.0")
    }
    
    tasks.register("filterDependencies") {
        val files: FileCollection = conf.incoming.artifactView {
            componentFilter {
                when(it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typexpr.go

    				return
    			}
    			x.val = check.iota
    		} else {
    			x.val = obj.val
    		}
    		assert(x.val != nil)
    		x.mode = constant_
    
    	case *TypeName:
    		if !check.conf.EnableAlias && check.isBrokenAlias(obj) {
    			check.errorf(e, InvalidDeclCycle, "invalid use of type alias %s in recursive type (see go.dev/issue/50729)", obj.name)
    			return
    		}
    		x.mode = typexpr
    
    	case *Var:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top