Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for Chip (0.18 sec)

  1. test/fixedbugs/issue15572.dir/b.go

    package b
    
    import "./a"
    
    func F() {
    	a.F()
    	a.Fi()
    }
    
    func Fp() {
    	a.Fp()
    	a.Fip()
    }
    
    func Gp() {
    	a.Gp()
    	a.Gip()
    }
    
    func Hp() {
    	a.Hp()
    	a.Hip()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 309 bytes
    - Viewed (0)
  2. test/fixedbugs/issue15572.dir/a.go

    	return map[int]*T{0: &T{}}
    }
    
    func Gip() map[int]*T {
    	return map[int]*T{0: {}} // element with implicit composite literal type
    }
    
    func Hp() map[*T]int {
    	return map[*T]int{&T{}: 0}
    }
    
    func Hip() map[*T]int {
    	return map[*T]int{{}: 0} // key with implicit composite literal type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 738 bytes
    - Viewed (0)
  3. src/packaging/common/scripts/postinst

                invoke-rc.d fess stop || true
                invoke-rc.d fess start || true
            else
                /etc/init.d/fess restart || true
            fi
    
        # older suse linux distributions do not ship with systemd
        # but do not have an /etc/init.d/ directory
        # this tries to start the fess service on these
        # as well without failing this script
        elif [ -x /etc/rc.d/init.d/fess ] ; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_VariantTensor, [{A Tensor with type=DT_VARIANT containing the deduplication
    data. The tensor is an XLA nested tuple containing N elements (where N is
    the ratio of the number of embedding to tensor cores per TPU chip). Each
    element of the nested tuple is a tuple of rank 1 tensors. Each tensor either
    contains indices (DT_UINT32) for embedding lookup on the TensorCore or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    This helps to identify any possible issues with the build that may affect cacheability.
    
    If you are subject to audit requirements regarding the artifacts you ship to your customers you may need to disable the build cache for certain builds.
    Develocity may help you with fulfilling these requirements while still using the build cache for all your builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top