Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for deselect (0.25 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          auto func_ty = func_op.getFunctionType();
          BuildBodyWithCall(rewriter, loc, func, func_ty, region);
        };
    
        // Insert a call to the select function in the select region of the mhlo op.
        insert_call_to(op.getSelect(), &select_and_scatter_op.getSelect());
        // Insert a call to the scatter function in the scatter region of the mhlo
        // op.
        insert_call_to(op.getScatter(), &select_and_scatter_op.getScatter());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    	}
    
    	// Add use_downstream_protocol for sidecar proxy only if protocol sniffing is enabled. Since
    	// protocol detection is disabled for gateway and use_downstream_protocol is used under protocol
    	// detection for cluster to select upstream connection protocol when the service port is unnamed.
    	// use_downstream_protocol should be disabled for gateway; while it sort of makes sense there, even
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        }
        if (auto xla_select_and_scatter_op =
                dyn_cast<TF::XlaSelectAndScatterOp>(op)) {
          return propagate_shape_to(xla_select_and_scatter_op.getSelect())
                     .value() &&
                 propagate_shape_to(xla_select_and_scatter_op.getScatter()).value();
        } else if (auto xla_variadic_reduce_v2_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        details == 'Trying to write an output to a read-only location which is for Gradle internal use only'
                        solutions == ['Select a different output location']
                        additionalData.asMap == [
                            'typeName': 'org.gradle.api.DefaultTask',
                            'propertyName': 'output',
                        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    const NamespaceNameLabel = "kubernetes.io/metadata.name"
    
    // toNamespaceSet converts a set of namespace labels to a Set that can be used to select against.
    func toNamespaceSet(name string, labels map[string]string) klabels.Set {
    	// If namespace label is not set, implicitly insert it to support older Kubernetes versions
    	if labels[NamespaceNameLabel] == name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    			}
    			if ok {
    				continue
    			}
    		} // in all other cases metadata is corrupt, do not read from it.
    
    		onlineMeta[i] = FileInfo{}
    		onlineDisks[i] = nil
    	}
    
    	select {
    	case mrfCheck <- fi.ShallowCopy():
    	case <-ctx.Done():
    		return fi, onlineMeta, onlineDisks, toObjectErr(ctx.Err(), bucket, object)
    	}
    
    	return fi, onlineMeta, onlineDisks, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    			// and that muddles the debugging experience.
    			if b.Pos == src.NoXPos {
    				b.Pos = bCond.Pos
    			}
    		}
    
    		s.startBlock(bEnd)
    
    	case ir.OSWITCH, ir.OSELECT:
    		// These have been mostly rewritten by the front end into their Nbody fields.
    		// Our main task is to correctly hook up any break statements.
    		bEnd := s.f.NewBlock(ssa.BlockPlain)
    
    		prevBreak := s.breakTo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top