Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 427 for pusha (0.28 sec)

  1. src/syscall/mksyscall.pl

    				push @args, "uintptr($name)", "uintptr($name>>32)";
    			} else {
    				push @args, "uintptr($name)";
    			}
    		} elsif($type eq "int64" && $dragonfly) {
    			if ($func !~ /^extp(read|write)/i) {
    				push @args, "0";
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} elsif($_32bit eq "little-endian") {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/regexp/backtrack.go

    			// If during the processing of inst.Out, we encounter
    			// inst.Arg via another path, we want to process it then.
    			// Pushing it here will inhibit that. Instead, re-push
    			// inst with arg==true as a reminder to push inst.Arg out
    			// later.
    			if arg {
    				// Finished inst.Out; try inst.Arg.
    				arg = false
    				pc = inst.Arg
    				goto CheckAndLoop
    			} else {
    				b.push(re, pc, pos, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

    LogicalResult HandleStackPushV2Op(
        TF::StackPushV2Op push,
        llvm::SmallDenseMap<Value, Value>* data_var_to_size_var) {
      auto it = data_var_to_size_var->find(push.getHandle());
      if (it == data_var_to_size_var->end()) {
        return push.emitOpError("unknown stack");
      }
      // Push output simply forward the input element.
      push.replaceAllUsesWith(push.getElem());
      OpBuilder builder(push);
      // Read the current buffer and size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/lds.go

    func (g *GrpcConfigGenerator) BuildListeners(node *model.Proxy, push *model.PushContext, names []string) model.Resources {
    	filter := newListenerNameFilter(names, node)
    
    	log.Debugf("building lds for %s with filter:\n%v", node.ID, filter)
    
    	resp := make(model.Resources, 0, len(filter))
    	resp = append(resp, buildOutboundListeners(node, push, filter)...)
    	resp = append(resp, buildInboundListeners(node, push, filter.inboundNames())...)
    
    	return resp
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    	// Check if ServiceAccounts have changed. We should do a full push if they have changed.
    	saUpdated := updateShardServiceAccount(ep, hostname)
    
    	// For existing endpoints, we need to do full push if service accounts change.
    	if saUpdated && pushType != FullPush {
    		// Avoid extra logging if already a full push
    		log.Infof("Full push, service accounts changed, %v", hostname)
    		pushType = FullPush
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds_test.go

    	})
    	ads := s.Connect(nil, nil, watchAll)
    	t.Run("Full Push", func(t *testing.T) {
    		s.Discovery.Push(&model.PushRequest{Full: true})
    		if _, err := ads.Wait(time.Second*5, watchAll...); err != nil {
    			t.Fatal(err)
    		}
    	})
    	t.Run("Incremental Push with updated services", func(t *testing.T) {
    		ads.WaitClear()
    		s.Discovery.Push(&model.PushRequest{
    			Full:           false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/networkfilter.go

    }
    
    func buildMetricsNetworkFilters(push *model.PushContext, proxy *model.Proxy, class istionetworking.ListenerClass, svc *model.Service) []*listener.Filter {
    	return push.Telemetry.TCPFilters(proxy, class, svc)
    }
    
    // setAccessLogAndBuildTCPFilter sets the AccessLog configuration in the given
    // TcpProxy instance and builds a TCP filter out of it.
    func setAccessLogAndBuildTCPFilter(push *model.PushContext, node *model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            }
    
            result.remote.config.useExpectContinue == "false"
    
            result.remote.type == 'HTTP'
            result.remote.push == push
    
    
            where:
            authenticated | credentials            | push
            'true'        | SOME_CREDENTIALS       | true
            'false'       | NO_CREDENTIALS         | false
            'false'       | INCOMPLETE_CREDENTIALS | false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. src/container/heap/heap.go

    //
    //	!h.Less(j, i) for 0 <= i < h.Len() and 2*i+1 <= j <= 2*i+2 and j < h.Len()
    //
    // Note that [Push] and [Pop] in this interface are for package heap's
    // implementation to call. To add and remove things from the heap,
    // use [heap.Push] and [heap.Pop].
    type Interface interface {
    	sort.Interface
    	Push(x any) // add x as element Len()
    	Pop() any   // remove and return element Len() - 1.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. hack/verify-vendor.sh

    mkdir -p "${_kubetmp}"
    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    popd > /dev/null 2>&1
    
    ret=0
    
    pushd "${KUBE_ROOT}" > /dev/null 2>&1
      # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top