Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 158 for ep (0.03 sec)

  1. tensorflow/compiler/aot/tfcompile.bzl

        # Rule that runs tfcompile to produce the header and object file.
        header_file = name + ".h"
    
        # The XLA backends morph kernel name prefix __ that is not in the form of
        # __xla_.
        ep = ("__xla_" + native.package_name() + "__" + name).replace("/", "_")
        if type(tfcompile_flags) == type(""):
            flags = tfcompile_flags
        else:
            flags = " ".join([
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    		}
    
    		// Generate the per-endpoint chains.
    		for _, ep := range allLocallyReachableEndpoints {
    			epInfo, ok := ep.(*endpointInfo)
    			if !ok {
    				proxier.logger.Error(nil, "Failed to cast endpointInfo", "endpointInfo", ep)
    				continue
    			}
    
    			endpointChain := epInfo.ChainName
    
    			// Create the endpoint chain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    		if commonParityDrives == 0 {
    			commonParityDrives, err = ecDrivesNoConfig(ep.DrivesPerSet)
    			if err != nil {
    				return nil, err
    			}
    		}
    
    		if err = storageclass.ValidateParity(commonParityDrives, ep.DrivesPerSet); err != nil {
    			return nil, fmt.Errorf("parity validation returned an error: %w <- (%d, %d), for pool(%s)", err, commonParityDrives, ep.DrivesPerSet, humanize.Ordinal(i+1))
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. docs/sts/README.md

    ```
    $ go run docs/sts/web-identity.go -cid account -csec 072e7f00-4289-469c-9ab2-bbe843c7f5a8  -config-ep "http://localhost:8080/auth/realms/demo/.well-known/openid-configuration" -port 8888
    2018/12/26 17:49:36 listening on http://localhost:8888/
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	if !ok {
    		// No distributed claim present.
    		return nil
    	}
    	ep, ok := sources[src]
    	if !ok {
    		return fmt.Errorf("id token _claim_names contained a source %s missing in _claims_sources", src)
    	}
    	if ep.URL == "" {
    		// This is maybe an aggregated claim (ep.JWT != "").
    		return nil
    	}
    	return r.resolve(ctx, ep, c)
    }
    
    // resolve requests distributed claims from all endpoints passed in,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. docs/sts/keycloak.md

    ```
    $ go run docs/sts/web-identity.go -cid account -csec 072e7f00-4289-469c-9ab2-bbe843c7f5a8  -config-ep "http://localhost:8080/auth/realms/minio/.well-known/openid-configuration" -port 8888
    2018/12/26 17:49:36 listening on http://localhost:8888/
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  7. tests/integration/security/sds_ingress/util/test_certs.go

    bG2X/YCLvKcL/ldtUtEoKC4O9Wfl/Rx+tHQTJiIokAH6vPLV5odHzm3/ezl1Q3WK
    4Na/Va4g+CG2D6hqVTLwgfmw9ju531+KQyscY7k0b1Sjjz1KlE+b5cN8QEereE/c
    e0fQo+5DcZTiYJIKRaVC3yYWUVZaGB3Zms34Ht1dKLeyI5JZ4YCxfKakIr1TGGR3
    ep+ErCOMh8WuCTFWA+DUYyuk7s8P7tO+JEL3LSOt9iWeKKLLKmI/srjYZGbxdPsi
    AmXdE/mL3v2vz8JAZFG+JHSRkffwQQIDAQABAoICAANiOkt0px+TK6+thmiapCt+
    lvhwoXkMC8y3re9u3catocm+NhoVYSOW6CUqlfn/DQvSCdaw7/Hy/X+pcgfUV9FQ
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "specify tracing invalid endpoint",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			ep := "dn%2s://localhost:4317"
    			conf.FeatureGates = map[string]bool{"KubeletTracing": true}
    			conf.Tracing = &tracingapi.TracingConfiguration{Endpoint: &ep}
    			return conf
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    	return getgcmask(x)
    }
    
    // Returns GC type info for the pointer stored in ep for testing.
    // If ep points to the stack, only static live information will be returned
    // (i.e. not for objects which are only dynamically live stack objects).
    func getgcmask(ep any) (mask []byte) {
    	e := *efaceOf(&ep)
    	p := e.data
    	t := e._type
    
    	var et *_type
    	if t.Kind_&abi.KindMask != abi.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. architecture/networking/pilot.md

    #### Conclusion
    
    Overall, the high level config ingestion flow:
    
    ```mermaid
    graph TD
        sd(Service Discovery)
        cs(ConfigStore)
        ep(Endpoints)
        pc(PushContext)
        sd-->pc
        cs-->pc
        sd-->ep
    ```
    
    ### Config Translation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top