Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for addsym (0.22 sec)

  1. guava/src/com/google/common/collect/Iterators.java

          Iterator<? extends T> iterator, Class<@NonNull T> type) {
        List<T> list = Lists.newArrayList(iterator);
        return Iterables.<T>toArray(list, type);
      }
    
      /**
       * Adds all elements in {@code iterator} to {@code collection}. The iterator will be left
       * exhausted: its {@code hasNext()} method will return {@code false}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	apfHandler := WithPriorityAndFairness(handler, longRunningRequestCheck, filter, defaultRequestWorkEstimator, time.Minute/4)
    
    	// add the handler in the chain that adds the specified user to the request context
    	handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		r = r.WithContext(apirequest.WithUser(r.Context(), &user.DefaultInfo{
    			Name:   userName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal.go

    		Type:    autoscalingv2.ScalingActive,
    		Status:  v1.ConditionFalse,
    		Reason:  reason,
    		Message: fmt.Sprintf("the HPA was unable to compute the replica count: %v", err),
    	}
    }
    
    // storeScaleEvent stores (adds or replaces outdated) scale event.
    // outdated events to be replaced were marked as outdated in the `markScaleEventsOutdated` function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // This rule is to legalize these constant to the tfl dialect.
    def LegalizeConstOp : Pat<
      (TF_ConstOp ElementsAttr:$value), (TFL_ConstOp $value)>;
    
    // Reorders adds to allow constant folding.
    // Add --> Add $input, $constantA
    //    \--> $constantB
    // To
    // Add --> $input
    //    \--> Add ($constantA, $constantB)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

            builder.setInsertionPoint(send_from_host);
            send_from_host.setOperand(2, core_to_device_ordinal[core]);
          }
        }
      }
    }
    
    // Move `clustered_ops` to run on host and adds communication ops to transfer
    // `external_operands` and `external_outputs` to/from device/host.  Inserts
    // ops at `insertion_point` and uses `compilation_key` and `device_ordinal` when
    // creating comm ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    	parentID TaskID
    }
    
    // queue implements a growable ring buffer with a queue API.
    type queue[T any] struct {
    	start, end int
    	buf        []T
    }
    
    // push adds a new event to the back of the queue.
    func (q *queue[T]) push(value T) {
    	if q.end-q.start == len(q.buf) {
    		q.grow()
    	}
    	q.buf[q.end%len(q.buf)] = value
    	q.end++
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    		// and uint16s) by using an appropriate constant.
    		//
    		// To summarize the technique, quoting from that page:
    		// "[It] works by first zeroing the high bits of the [8]
    		// bytes in the word. Subsequently, it adds a number that
    		// will result in an overflow to the high bit of a byte if
    		// any of the low bits were initially set. Next the high
    		// bits of the original word are ORed with these values;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    			// source ip and service port destination fixes the outgoing connections.
    			proxier.natRules.Write(
    				args, "src,dst",
    				"-j", string(kubeMarkMasqChain))
    		}
    	}
    
    	// externalIPRules adds iptables rules applies to Service ExternalIPs
    	externalIPRules := func(args []string) {
    		// Allow traffic for external IPs that does not come from a bridge (i.e. not from a container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    				return true, nil
    			}
    		}
    	}
    	return false, nil
    }
    
    func mustHaveCompleteRequirements() bool {
    	return cfg.BuildMod != "mod" && !inWorkspaceMode()
    }
    
    // addGoStmt adds a go directive to the go.mod file if it does not already
    // include one. The 'go' version added, if any, is the latest version supported
    // by this toolchain.
    func addGoStmt(modFile *modfile.File, mod module.Version, v string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    			// asking cmd/cover for a static meta-data file as part of
    			// the package build. This static meta-data file is then
    			// consumed by a pseudo-action (writeCoverMetaAct) that
    			// adds it to a summary file, then this summary file is
    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    			// "write meta files" pseudo-action, and then another dep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top