Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for happen (0.16 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      // check that inputs length is same as num_replicas.
      if (inputs.size() != replicate.getN()) {
        return replicate.emitError()
               << "Expected numper of inputs (" << inputs.size()
               << ") to append to replicate to be num_replicas ("
               << replicate.getN() << ")";
      }
    
      // add block arg to region. This is in $body.
      unsigned block_arg_idx = replicate.GetNumReplicatedBlockArguments();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            val nodeCount = nodes.size
            writeSmallInt(nodeCount)
            val scheduledNodeIds = HashMap<Node, Int>(nodeCount)
            // Not all entry nodes are always scheduled.
            // In particular, it happens when the entry node is a task of the included plugin build that runs as part of building the plugin.
            // Such tasks do not rerun when configuration cache is re-used, even if specified on the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. tests/joins_test.go

    		*GetUser("slice-joins-3", Config{Company: true, Manager: true, Account: true}),
    	}
    
    	DB.Create(&users)
    
    	var userIDs []uint
    	for _, user := range users {
    		userIDs = append(userIDs, user.ID)
    	}
    
    	var users2 []User
    	if err := DB.Joins("Company").Joins("Manager").Joins("Account").Find(&users2, "users.id IN ?", userIDs).Error; err != nil {
    		t.Fatalf("Failed to load with joins, got error: %v", err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

            return when {
                // TODO - always include this as a build failure;
                //  currently it is disabled when a serialization problem happens
                failDueToProblems -> {
                    ConfigurationCacheProblemsException(summary.causes, summaryText)
                }
    
                hasTooManyProblems -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder_test.go

    	return val
    }
    
    func getEnvoyFilterConfigs(configPatches []*networking.EnvoyFilter_EnvoyConfigObjectPatch) []config.Config {
    	res := []config.Config{}
    	for i, cp := range configPatches {
    		res = append(res, config.Config{
    			Meta: config.Meta{
    				Name:             fmt.Sprintf("test-envoyfilter-%d", i),
    				Namespace:        "not-default",
    				GroupVersionKind: gvk.EnvoyFilter,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. cmd/bucket-handlers_test.go

    		for _, objectName := range objectNames {
    			objectList = append(objectList, ObjectToDelete{
    				ObjectV: ObjectV{
    					ObjectName: objectName,
    				},
    			})
    		}
    
    		return objectList
    	}
    
    	getDeleteErrorList := func(objects []ObjectToDelete) (deleteErrorList []DeleteError) {
    		for _, obj := range objects {
    			deleteErrorList = append(deleteErrorList, DeleteError{
    				Code:    errorCodes[ErrAccessDenied].Code,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

                    nestedProviderCodecForFingerprint(
                        valueSourceProviderFactory
                    )
                )
            }
        }
    
        private
        fun Bindings.completeWithStatefulCodecs() = append {
            bind(ExternalizableCodec)
            bind(JavaObjectSerializationCodec(javaSerializationEncodingLookup))
    
            // This protects the BeanCodec against StackOverflowErrors, but
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    	v.Block = b
    	if notStmtBoundary(op) {
    		pos = pos.WithNotStmt()
    	}
    	v.Pos = pos
    	b.Values = append(b.Values, v)
    	return v
    }
    
    // newValueNoBlock allocates a new Value with the given fields.
    // The returned value is not placed in any block.  Once the caller
    // decides on a block b, it must set b.Block and append
    // the returned value to b.Values.
    func (f *Func) newValueNoBlock(op Op, t *types.Type, pos src.XPos) *Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. internal/kms/config.go

    			continue
    		}
    		if !ellipses.HasEllipses(endpoint) {
    			endpoints = append(endpoints, endpoint)
    			continue
    		}
    
    		pattern, err := ellipses.FindEllipsesPatterns(endpoint)
    		if err != nil {
    			return nil, fmt.Errorf("kms: invalid endpoint '%s': %v", endpoint, err)
    		}
    		for _, p := range pattern.Expand() {
    			endpoints = append(endpoints, strings.Join(p, ""))
    		}
    	}
    	return endpoints, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client.go

    		out.addCRD(name)
    	}
    
    	return out
    }
    
    func (cl *Client) RegisterEventHandler(kind config.GroupVersionKind, handler model.EventHandler) {
    	cl.handlers[kind] = append(cl.handlers[kind], handler)
    }
    
    // Run the queue and all informers. Callers should  wait for HasSynced() before depending on results.
    func (cl *Client) Run(stop <-chan struct{}) {
    	if cl.started.Swap(true) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top