Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for applyTo (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Simplifications that apply to all backend architectures. As an example, this
    // Go source code
    //
    // y := 0 * x
    //
    // can be translated into y := 0 without losing any information, which saves a
    // pointless multiplication instruction. Other .rules files in this directory
    // (for example AMD64.rules) contain rules specific to the architecture in the
    // filename. The rules here apply to every architecture.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            non_splat_operand_type.getRank() > 4) {
          return failure();
        }
    
        // If non-splat operand is not fusable affine ops, then no need to apply
        // this transformation.
        if (!CanFuseAffineOp(non_splat_operand.getDefiningOp(), binary_op)) {
          return failure();
        }
    
        // Creates a new scalar constant op using the splat value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    			if !(ps.Peers[id].ReplicateILMExpiry == peer.ReplicateILMExpiry) {
    				flagEqual = false
    				break
    			}
    		}
    		if flagEqual {
    			continue
    		}
    
    		// Dont apply the self state to self
    		if dID == globalDeploymentID() {
    			continue
    		}
    
    		// Send details to other sites for healing
    		admClient, err := c.getAdminClient(ctx, dID)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                is then described by additional elements.
                Projects should only list the license(s) that applies to the project
                and not the licenses that apply to dependencies.
                If multiple licenses are listed, it is assumed that the user can select
                any of them, not that they must accept all.
                ]]>
              </description>
              <association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    		// Objects matching prefixes should not leave delete markers,
    		// dramatically reduces namespace pollution while keeping the
    		// benefits of replication, make sure to apply version suspension
    		// only at bucket level instead.
    		VersionSuspended: globalBucketVersioningSys.Suspended(bucket),
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    				errs = AppendWarningf(errs,
    					"sidecar: HTTP connection pool settings are configured for port %d (%q) but its protocol is not HTTP (%s); only TCP settings will apply",
    					i.Port.Number, i.Port.Name, i.Port.Protocol)
    			}
    		}
    
    		// Validate top-level connection pool setting
    		errs = AppendValidation(errs, validateConnectionPool(rule.InboundConnectionPool))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

      fun canceledBeforeResponseReadSignalsOnFailure_HTTP_2() {
        enableProtocol(Protocol.HTTP_2)
        canceledBeforeResponseReadSignalsOnFailure()
      }
    
      /**
       * There's a race condition where the cancel may apply after the stream has already been
       * processed.
       */
      @Test
      fun canceledAfterResponseIsDeliveredBreaksStreamButSignalsOnce() {
        server.enqueue(MockResponse(body = "A"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    }
    
    // Length returns the column type length for variable length column types such
    // as text and binary field types. If the type length is unbounded the value will
    // be [math.MaxInt64] (any database limits will still apply).
    // If the column type is not variable length, such as an int, or if not supported
    // by the driver ok is false.
    func (ci *ColumnType) Length() (length int64, ok bool) {
    	return ci.length, ci.hasLength
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    // 1. Decrement nmspinning.
    // 2. #StoreLoad-style memory barrier.
    // 3. Check all per-P work queues and GC for new work.
    //
    // Note that all this complexity does not apply to global run queue as we are
    // not sloppy about thread unparking when submitting to global queue. Also see
    // comments for nmspinning manipulation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return precPrimary
    }
    
    // Template is a template with arguments.
    type Template struct {
    	Name AST
    	Args []AST
    }
    
    func (t *Template) print(ps *printState) {
    	// Inner types apply to the template as a whole, they don't
    	// cross over into the template.
    	holdInner := ps.inner
    	defer func() { ps.inner = holdInner }()
    
    	ps.inner = nil
    	ps.print(t.Name)
    
    	if !ps.tparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top