Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for popf (0.03 sec)

  1. src/sync/pool.go

    // the result of calling p.New.
    func (p *Pool) Get() any {
    	if race.Enabled {
    		race.Disable()
    	}
    	l, pid := p.pin()
    	x := l.private
    	l.private = nil
    	if x == nil {
    		// Try to pop the head of the local shard. We prefer
    		// the head over the tail for temporal locality of
    		// reuse.
    		x, _ = l.shared.popHead()
    		if x == nil {
    			x = p.getSlow(pid)
    		}
    	}
    	runtime_procUnpin()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    ```
    %0 = "tf.opA"() : () -> tensor<i32>
    %1 = "tf.opB"() : () -> tensor<i32>
    %2 = "tf.opC"() : () -> tensor<f32>
    %3 = "tf.opD"() : () -> tensor<f32>
    %4 = "tf.opE"() : () -> tensor<!tf_type.resource>
    %5 = "tf.opF"() : () -> tensor<!tf_type.resource>
    %6 = "tf.opG"() : () -> tensor<!tf_type.string>
    %7 = "tf.opH"() : () -> tensor<!tf_type.string>
    %8 = "tf.opI"() : () -> tensor<!tf_type.variant>
    %9 = "tf.opJ"() : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		if msgs := IsValidUserID(val); len(msgs) == 0 {
    			t.Errorf("expected false for '%d'", val)
    		}
    	}
    }
    
    func TestIsValidPortName(t *testing.T) {
    	goodValues := []string{"telnet", "re-mail-ck", "pop3", "a", "a-1", "1-a", "a-1-b-2-c", "1-a-2-b-3"}
    	for _, val := range goodValues {
    		if msgs := IsValidPortName(val); len(msgs) != 0 {
    			t.Errorf("expected true for %q: %v", val, msgs)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

        session['user'] = user
        return response
    
    
    @app.route('/logout', methods=['GET'])
    def logout():
        response = app.make_response(redirect(request.referrer))
        session.pop('user', None)
        return response
    
    # a helper function for asyncio.gather, does not return a value
    
    
    async def getProductReviewsIgnoreResponse(product_id, headers):
        getProductReviews(product_id, headers)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      std::queue<Operation*> queue;
      llvm::SmallSetVector<Operation*, 4> ops_to_move;
    
      queue.push(root_op);
      while (!queue.empty()) {
        Operation* op = queue.front();
        queue.pop();
        if (llvm::isa<tf_device::ReturnOp>(op)) continue;
        ops_to_move.insert(op);
        for (Operation* user : op->getUsers()) {
          if (!ops_to_move.contains(user)) {
            queue.push(user);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/net/conf.go

    	// systems did not support the go resolver.
    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    	// Darwin pops up annoying dialog boxes if programs try to
    	// do their own DNS requests, so prefer cgo.
    	case "darwin", "ios":
    		return true
    
    	// DNS requests don't work on Android, so prefer the cgo resolver.
    	// Issue #10714.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top