Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 321 for gather (1.37 sec)

  1. src/cmd/link/internal/ld/lib.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    // ArchSyms holds a number of architecture specific symbols used during
    // relocation.  Rather than allowing them universal access to all symbols,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	p.want(_Semi)
    
    	// don't bother continuing if package clause has errors
    	if p.first != nil {
    		return nil
    	}
    
    	// Accept import declarations anywhere for error tolerance, but complain.
    	// { ( ImportDecl | TopLevelDecl ) ";" }
    	prev := _Import
    	for p.tok != _EOF {
    		if p.tok == _Import && prev != _Import {
    			p.syntaxError("imports must appear before other declarations")
    		}
    		prev = p.tok
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                String line = currentColor + lines[i];
    
                // look for last ANSI escape sequence to check if nextColor
                Matcher matcher = LAST_ANSI_SEQUENCE.matcher(line);
                String nextColor = "";
                if (matcher.find()) {
                    nextColor = matcher.group(1);
                    if (ANSI_RESET.equals(nextColor)) {
                        // last ANSI escape code is reset: no next color
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    				}
    				t, _, _ := check.implicitTypeAndValue(x, u)
    				return t != nil
    			}) {
    				return nil, nil, InvalidUntypedConversion
    			}
    			break
    		}
    		// Update operand types to the default type rather than the target
    		// (interface) type: values must have concrete dynamic types.
    		// Untyped nil was handled upfront.
    		if !u.Empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    					if dr == nil {
    						// Don't bother giving the match conditions, the problem is that there are unknowns in the VirtualService
    						mismatchNotes = append(mismatchNotes, fmt.Sprintf("Warning: Route to subset %s but NO DESTINATION RULE defining subsets!", dest.Destination.Subset))
    					} else {
    						// Don't bother giving the match conditions, the problem is that there are unknowns in the VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // platforms.  They are subject to change without notice.  DO NOT USE
    // THEM IN USER CODE.
    //
    // This file is fundamental to Google Test.  All other Google Test source
    // files are expected to #include this.  Therefore, it cannot #include
    // any other Google Test header.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    		// rather than starting all in a batch and then waiting once
    		// afterwards. By running one goroutine at a time, we can take
    		// advantage of runnext to bounce back and forth between
    		// workers and this goroutine. In an overloaded application,
    		// this can reduce GC start latency by prioritizing these
    		// goroutines rather than waiting on the end of the run queue.
    		<-ready
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    	StackOffset
    }
    
    func (loc VarLoc) absent() bool {
    	return loc.Registers == 0 && !loc.onStack()
    }
    
    func (loc VarLoc) intersect(other VarLoc) VarLoc {
    	if !loc.onStack() || !other.onStack() || loc.StackOffset != other.StackOffset {
    		loc.StackOffset = 0
    	}
    	loc.Registers &= other.Registers
    	return loc
    }
    
    var BlockStart = &Value{
    	ID:  -10000,
    	Op:  OpInvalid,
    	Aux: StringToAux("BlockStart"),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        quantization_method_ = other.quantization_method_;
        target_opset_ = other.target_opset_;
        enable_per_channel_quantization_ = other.enable_per_channel_quantization_;
        min_num_elements_for_weights_ = other.min_num_elements_for_weights_;
        enable_legacy_weight_only_ = other.enable_legacy_weight_only_;
        mlir_dump_file_name_ = other.mlir_dump_file_name_;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. gradle/verification-metadata.xml

         Unless required by applicable law or agreed to in writing,
         software distributed under the License is distributed on an
         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
         KIND, either express or implied.  See the License for the
         specific language governing permissions and limitations
         under the License.
    -->
    <!--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top