Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for addIcons (0.48 sec)

  1. manifests/addons/gen.sh

    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    set -eux
    
    # This script sets up the plain text rendered deployments for addons
    # See samples/addons/README.md for more information
    
    ADDONS="${WD}/../../samples/addons"
    DASHBOARDS="${WD}/dashboards"
    mkdir -p "${ADDONS}"
    TMP=$(mktemp -d)
    LOKI_VERSION=${LOKI_VERSION:-"6.0.0"}
    GRAFANA_VERSION=${GRAFANA_VERSION:-"7.3.7"}
    
    # Set up kiali
    {
    Shell Script
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Tue Apr 09 21:40:53 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver.go

    */
    
    type connMgr struct {
    	connectionSet map[*ZtunnelConnection]struct{}
    	latestConn    *ZtunnelConnection
    	mu            sync.Mutex
    }
    
    func (c *connMgr) addConn(conn *ZtunnelConnection) {
    	log.Debug("ztunnel connected")
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.connectionSet[conn] = struct{}{}
    	c.latestConn = conn
    	ztunnelConnected.RecordInt(int64(len(c.connectionSet)))
    }
    
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  3. Makefile.core.mk

    gen-charts:
    	@echo "This target is no longer required and will be removed in the future"
    
    gen-addons:
    	manifests/addons/gen.sh
    
    gen: \
    	mod-download-go \
    	go-gen \
    	mirror-licenses \
    	format \
    	update-crds \
    	proto \
    	copy-templates \
    	gen-addons \
    	update-golden ## Update all generated code.
    
    gen-check: gen check-clean-repo
    
    Plain Text
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  4. CODEOWNERS

    /releasenotes/                                                   @istio/wg-test-and-release-maintainers
    /releasenotes/notes
    /samples/                                                        @istio/wg-docs-maintainers-english
    /samples/addons                                                  @istio/wg-policies-and-telemetry-maintainers @istio/wg-environments-maintainers
    Plain Text
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Tue Mar 12 09:13:24 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

        feature.
    *   Full new features (e.g., a new op implementing a cutting-edge algorithm)
        typically will live in
        [tensorflow/addons](https://github.com/tensorflow/addons) to get some
        airtime before a decision is made regarding whether they are to be migrated
        to the core.
    *   As every PR requires several CPU/GPU hours of CI testing, we discourage
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  6. tensorflow/api_template_v1.__init__.py

    The TensorFlow contrib module will not be included in TensorFlow 2.0.
    For more information, please see:
      * https://github.com/tensorflow/community/blob/master/rfcs/20180907-contrib-sunset.md
      * https://github.com/tensorflow/addons
      * https://github.com/tensorflow/io (for I/O related ops)
    If you depend on functionality not listed there, please file an issue.
    """
    contrib = _LazyLoader("contrib", globals(), "tensorflow.contrib",
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    * - Add PodSecurityPolicies for cluster addons ([#55509](https://github.com/kubernetes/kubernetes/pull/55509), [@tallclair](https://github.com/tallclair))
        * - Remove SSL cert HostPath volumes from heapster addons
    Plain Text
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.7.md

    	* ip-masq-agent is now on by default for GCE ([#47794](https://github.com/kubernetes/kubernetes/pull/47794), [@dnardo](https://github.com/dnardo))
    
      * Add ip-masq-agent addon to the addons folder which is used in GCE if `--non-masquerade-cidr` is set to 0/0 ([#46038](https://github.com/kubernetes/kubernetes/pull/46038), [@dnardo](https://github.com/dnardo))
    
    Plain Text
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.9.md

    *   PodSecurityPolicies have been added for all in-tree cluster addons ([#55509](https://github.com/kubernetes/kubernetes/pull/55509),[ @tallclair](https://github.com/tallclair))
    
    #### **GCE**
    
    Plain Text
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    language governing permissions and # limitations under the License. WD=$(dirname "$0") WD=$(cd "$WD"; pwd) set -eux # This script sets up the plain text rendered deployments for addons # See samples/addons/README.md for more information ADDONS="${WD}/../../samples/addons" DASHBOARDS="${WD}/dashboards" mkdir -p "${ADDONS}" TMP=$(mktemp -d) LOKI_VERSION=${LOKI_VERSION:-"4.8.0"} GRAFANA_VERSION=${GRAFANA_VERSION:-"6.61.1"} # Set up kiali { helm3 template kiali-server \ --namespace istio-system \ --version...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top