Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for popf (0.05 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

     public:
      // The c'tor pushes the given source file location and message onto
      // a trace stack maintained by Google Test.
      ScopedTrace(const char* file, int line, const Message& message);
    
      // The d'tor pops the info pushed by the c'tor.
      //
      // Note that the d'tor is not virtual in order to be efficient.
      // Don't inherit from ScopedTrace!
      ~ScopedTrace();
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

                candidate.desc == methodNode.desc && candidate.signature == methodNode.signature
            }
    
            while (superTypeStack.isNotEmpty()) {
                val superTypeName = superTypeStack.pop()
    
                if (!visited.add(superTypeName)) continue
    
                val superType = typeForInternalName(superTypeName) ?: continue
    
                if (superType.delegate.methods.any(matchesMethodNode)) return false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/x86/asm.go

    	//      8d 99 00 00 00 00       lea 0x0(%ecx), %ebx + R_GOTPC _GLOBAL_OFFSET_TABLE_
    	//      e8 00 00 00 00          call runtime.addmoduledata@plt + R_CALL runtime.addmoduledata
    	//      5b                      pop %ebx
    	//      c3                      ret
    
    	o(0x53)
    
    	o(0xe8)
    	initfunc.AddSymRef(ctxt.Arch, ldr.Lookup("__x86.get_pc_thunk.cx", 0), 0, objabi.R_CALL, 4)
    
    	o(0x8d, 0x81)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top