Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for Chip (0.04 sec)

  1. src/encoding/xml/marshal_test.go

    			"answer":   "42",
    		},
    		Err:  "xml: unsupported type: map[string]string",
    		Kind: reflect.Map,
    	},
    	{
    		Value: map[*Ship]bool{nil: false},
    		Err:   "xml: unsupported type: map[*xml.Ship]bool",
    		Kind:  reflect.Map,
    	},
    	{
    		Value: &Domain{Comment: []byte("f--bar")},
    		Err:   `xml: comments must not contain "--"`,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    The start scripts launch a JVM with the specified settings defined as part of the original build and runtime environment (e.g. `JAVA_OPTS` env var).
    The default script templates are based on the same scripts used to launch Gradle itself, that ship as part of a Gradle distribution.
    
    The start scripts are completely customizable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    		return "unknown"
    	}
    
    	if len(ingress.service.Status.LoadBalancer.Ingress) > 0 {
    		return ingress.service.Status.LoadBalancer.Ingress[0].IP
    	}
    
    	if hIP := ingress.pods[0].Status.HostIP; hIP != "" {
    		return hIP
    	}
    
    	// The scope of this function is to get the IP from Kubernetes, we do not
    	// ask Docker or minikube for an IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    include::sample[dir="snippets/groovy/groovyDependency/groovy",files="build.gradle[tags=groovy-test-dependency]"]
    ====
    
    To use the Groovy library that ships with Gradle, declare a `localGroovy()` dependency. Note that different Gradle versions ship with different Groovy versions; as such, using `localGroovy()` is less safe then declaring a regular Groovy dependency.
    
    .Configuration of bundled Groovy dependency
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. src/time/zoneinfo_read.go

    		return loadTzinfoFromZip(dir, name)
    	}
    	if dir != "" {
    		name = dir + "/" + name
    	}
    	return readFile(name)
    }
    
    // There are 500+ zoneinfo files. Rather than distribute them all
    // individually, we ship them in an uncompressed zip file.
    // Used this way, the zip file format serves as a commonly readable
    // container for the individual small files. We choose zip over tar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/controllermanager.go

    the system. In Kubernetes, a controller is a control loop that watches the shared
    state of the cluster through the apiserver and makes changes attempting to move the
    current state towards the desired state. Examples of controllers that ship with
    Kubernetes today are the replication controller, endpoints controller, namespace
    controller, and serviceaccounts controller.`,
    		PersistentPreRunE: func(*cobra.Command, []string) error {
    			// silence client-go warnings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute.go

    	if err != nil && routeName != model.RDSHttpProxy && !strings.HasPrefix(routeName, model.UnixAddressPrefix) {
    		// TODO: This is potentially one place where envoyFilter ADD operation can be helpful if the
    		// user wants to ship a custom RDS. But at this point, the match semantics are murky. We have no
    		// object to match upon. This needs more thought. For now, we will continue to return nil for
    		// unknown routes
    		return nil, false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    include::sample[dir="snippets/dependencyManagement/declaringDependencies-artifactOnly/groovy",files="build.gradle[tags=artifact-only-dependency-declaration]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"shell":                                "\U0001f41a",
    	"shield":                               "\U0001f6e1\ufe0f",
    	"shinto_shrine":                        "\u26e9\ufe0f",
    	"ship":                                 "\U0001f6a2",
    	"shirt":                                "\U0001f455",
    	"shit":                                 "\U0001f4a9",
    	"shoe":                                 "\U0001f45e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	return m
    }
    
    // clangos lists the operating systems where we prefer clang to gcc.
    var clangos = []string{
    	"darwin", "ios", // macOS 10.9 and later require clang
    	"freebsd", // FreeBSD 10 and later do not ship gcc
    	"openbsd", // OpenBSD ships with GCC 4.2, which is now quite old.
    }
    
    // compilerEnvLookup returns the compiler settings for goos/goarch in map m.
    // kind is "CC" or "CXX".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top