Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 91 for popf (0.06 sec)

  1. cmd/background-newdisks-heal-ops.go

    						timedout := OperationTimedOut{}
    						if !errors.Is(err, context.Canceled) && !errors.As(err, &timedout) {
    							printEndpointError(disk, err, false)
    						}
    						return
    					}
    					// Only upon success pop the healed disk.
    					globalBackgroundHealState.popHealLocalDisks(disk)
    				}(disk)
    			}
    
    			// Reset for next interval.
    			diskCheckTimer.Reset(defaultMonitorNewDiskInterval)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check.go

    func (check *Checker) push(obj Object) int {
    	check.objPath = append(check.objPath, obj)
    	return len(check.objPath) - 1
    }
    
    // pop pops and returns the topmost object from the object path.
    func (check *Checker) pop() Object {
    	i := len(check.objPath) - 1
    	obj := check.objPath[i]
    	check.objPath[i] = nil
    	check.objPath = check.objPath[:i]
    	return obj
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    		// Because black and white are < grey, all values >= grey are grey.
    		// Use those values to encode the object's index into the object path.
    		obj.setColor(grey + color(check.push(obj)))
    		defer func() {
    			check.pop().setColor(black)
    		}()
    
    	case black:
    		assert(obj.Type() != nil)
    		return
    
    	default:
    		// Color values other than white or black are considered grey.
    		fallthrough
    
    	case grey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

    import static org.objectweb.asm.Opcodes.IRETURN;
    import static org.objectweb.asm.Opcodes.LCONST_0;
    import static org.objectweb.asm.Opcodes.NEW;
    import static org.objectweb.asm.Opcodes.POP;
    import static org.objectweb.asm.Opcodes.PUTFIELD;
    import static org.objectweb.asm.Opcodes.PUTSTATIC;
    import static org.objectweb.asm.Opcodes.RETURN;
    import static org.objectweb.asm.Opcodes.V1_6;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

        // in ::testing::internal, it will be picked by the compiler in the
        // following statement - exactly what we want.
        PrintTo(value, os);
      }
    
    #ifdef _MSC_VER
    # pragma warning(pop)           // Restores the warning state.
    #endif  // _MSC_VER
    };
    
    // UniversalPrintArray(begin, len, os) prints an array of 'len'
    // elements, starting at address 'begin'.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

        processing_queue.push(preferred_graph_view);
      }
    
      // If we see conflict, we will just abort.
      while (!processing_queue.empty()) {
        const GraphView* current = processing_queue.front();
        processing_queue.pop();
        for (const auto& input_with_plans : current->input_subgraph_plans) {
          func::CallOp input = llvm::cast<func::CallOp>(input_with_plans.first);
          const InferenceDeviceType& input_decision = input_with_plans.second;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  7. hack/update-codegen.sh

            UPDATE_API_KNOWN_VIOLATIONS="${UPDATE_API_KNOWN_VIOLATIONS}" \
            API_KNOWN_VIOLATIONS_DIR="${API_KNOWN_VIOLATIONS_DIR}" \
                ./hack/update-codegen.sh > >(indent) 2> >(indent >&2)
            popd >/dev/null
        done
    }
    
    function codegen::protobindings() {
        # Each element of this array is a directory containing subdirectories which
        # eventually contain a file named "api.proto".
        local apis=(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. src/slices/zsortanyfunc.go

    	first := a
    	lo := 0
    	hi := b - a
    
    	// Build heap with greatest element at top.
    	for i := (hi - 1) / 2; i >= 0; i-- {
    		siftDownCmpFunc(data, i, hi, first, cmp)
    	}
    
    	// Pop elements, largest first, into end of data.
    	for i := hi - 1; i >= 0; i-- {
    		data[first], data[first+i] = data[first+i], data[first]
    		siftDownCmpFunc(data, lo, i, first, cmp)
    	}
    }
    
    // pdqsortCmpFunc sorts data[a:b].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. src/net/lookup.go

    	},
    	"tcp": {
    		"ftp":         21,
    		"ftps":        990,
    		"gopher":      70, // ʕ◔ϖ◔ʔ
    		"http":        80,
    		"https":       443,
    		"imap2":       143,
    		"imap3":       220,
    		"imaps":       993,
    		"pop3":        110,
    		"pop3s":       995,
    		"smtp":        25,
    		"submissions": 465,
    		"ssh":         22,
    		"telnet":      23,
    	},
    }
    
    // dnsWaitGroup can be used by tests to wait for all DNS goroutines to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. src/debug/gosym/symtab.go

    		val := int(s.Value)
    		switch {
    		case val > aline:
    			break pathloop
    
    		case val == 1:
    			// Start a new stack
    			tos = &stackEnt{s.Name, val, 0, noPath}
    
    		case s.Name == "":
    			// Pop
    			if tos == noPath {
    				return "<malformed symbol table>", 0
    			}
    			tos.prev.offset += val - tos.start
    			tos = tos.prev
    
    		default:
    			// Push
    			tos = &stackEnt{s.Name, val, 0, tos}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top