Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 92 for getg (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/replicate_invariant_op_hoisting.cc

    // invariant. Shape ops are rewritten to be invariant when possible, prior to
    // hoisting ops.
    void HoistReplicateInvariantOps(tf_device::ReplicateOp replicate_op) {
      const int num_replicas = replicate_op.getN();
      Block* replicate_block = &replicate_op.GetBody();
    
      // A `ShapeOp` that directly depends on a `tf_device.replicate` param and does
      // not have a virtual device is assumed to return the same shape across all
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/config/config.go

    		}
    	}
    	if err := agent.ValidateMeshConfigProxyConfig(proxyConfig); err != nil {
    		return nil, err
    	}
    	return applyAnnotations(proxyConfig, annotations), nil
    }
    
    // getMeshConfig gets the mesh config to use for proxy configuration
    // 1. First we take the default config
    // 2. Then we apply any settings from file (this comes from gateway mounting configmap)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

            failure.assertHasCause(mutationExceptionFor(description))
    
            where:
            [description, code] << INVALID_CALL_FROM_LAZY_CONFIGURATION
        }
    
        def "gets useful message when using improper type for named using #api"() {
            buildFile << """
                class CustomTask extends DefaultTask {
                }
                class AnotherTask extends DefaultTask {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/go/ast/import.go

    				} else {
    					// An import spec can have both block comment and a line comment
    					// to its right. In that case, both of them will have the same pos.
    					// But while formatting the AST, the line comment gets moved to
    					// after the block comment.
    					c.Slash = pos[i].End
    				}
    			}
    		}
    	}
    
    	slices.SortFunc(comments, func(a, b *CommentGroup) int {
    		return cmp.Compare(a.Pos(), b.Pos())
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // Formats a byte as "%02X".
      static std::string FormatByte(unsigned char value);
    
     private:
      String();  // Not meant to be instantiated.
    };  // class String
    
    // Gets the content of the stringstream's buffer as an std::string.  Each '\0'
    // character in the buffer is replaced with "\\0".
    GTEST_API_ std::string StringStreamToString(::std::stringstream* stream);
    
    }  // namespace internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/claiminfo.go

    func (cache *claimInfoCache) contains(claimName, namespace string) bool {
    	_, exists := cache.claimInfo[namespace+"/"+claimName]
    	return exists
    }
    
    // get gets a specific claim info object from the cache.
    func (cache *claimInfoCache) get(claimName, namespace string) (*ClaimInfo, bool) {
    	info, exists := cache.claimInfo[namespace+"/"+claimName]
    	return info, exists
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters.go

    type assumeCacheLister interface {
    	List(indexObj interface{}) []interface{}
    }
    
    // newResourceModel parses the available information about resources. Objects
    // with an unknown structured parameter model silently ignored. An error gets
    // logged later when parameters required for a pod depend on such an unknown
    // model.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 09:03:22 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. istioctl/pkg/version/version.go

      # (This is the usual way to get the control plane version with an out-of-cluster control plane.)
      istioctl x version --xds-address istio.cloudprovider.example.com:15012
    
      # Retrieve version information via Kubernetes config, using token security
      # (This is the usual way to get the control plane version with an in-cluster control plane.)
      istioctl x version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/net/http/header.go

    }
    
    // Get gets the first value associated with the given key. If
    // there are no values associated with the key, Get returns "".
    // It is case insensitive; [textproto.CanonicalMIMEHeaderKey] is
    // used to canonicalize the provided key. Get assumes that all
    // keys are stored in canonical form. To use non-canonical keys,
    // access the map directly.
    func (h Header) Get(key string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pkg/controller/bootstrap/bootstrapsigner.go

    		klog.FromContext(ctx).V(3).Info("Error updating ConfigMap", "err", err)
    	}
    }
    
    // getConfigMap gets the ConfigMap we are interested in
    func (e *Signer) getConfigMap() *v1.ConfigMap {
    	configMap, err := e.configMapLister.ConfigMaps(e.configMapNamespace).Get(e.configMapName)
    
    	// If we can't get the configmap just return nil. The resync will eventually
    	// sync things up.
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top