Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 676 for aloop (0.07 sec)

  1. src/image/draw/draw.go

    					out.B = uint16(sb * ma / m)
    					out.A = uint16(sa * ma / m)
    				}
    				// The third argument is &out instead of out (and out is
    				// declared outside of the inner loop) to avoid the implicit
    				// conversion to color.Color here allocating memory in the
    				// inner loop if sizeof(color.RGBA64) > sizeof(uintptr).
    				dst.Set(x, y, &out)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				Binding:    binding,
    			})
    		}
    	}
    
    	authz := newCachingAuthorizer(c.authz)
    
    	for _, hook := range hooks {
    		// versionedAttributes will be set to non-nil inside of the loop, but
    		// is scoped outside of the param loop so we only convert once. We defer
    		// conversion so that it is only performed when we know a policy matches,
    		// saving the cost of converting non-matching requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	}
    	s += "\n"
    	return s
    }
    
    // insertLoopReschedChecks inserts rescheduling checks on loop backedges.
    func insertLoopReschedChecks(f *Func) {
    	// TODO: when split information is recorded in export data, insert checks only on backedges that can be reached on a split-call-free path.
    
    	// Loop reschedule checks compare the stack pointer with
    	// the per-g stack bound.  If the pointer appears invalid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    			baseKey:   baseKey,
    			leaseTime: leaseTime,
    		},
    	}, nil
    }
    
    // PeerEndpointController is the controller manager for updating the peer endpoint leases.
    // This provides a separate independent reconciliation loop for peer endpoint leases
    // which ensures that the peer kube-apiservers are fetching the updated endpoint info for a given apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/policy.go

    	// appropriate based on the logic above.
    	return TopologyHint{mergedAffinity, preferred}
    }
    
    func filterProvidersHints(providersHints []map[string][]TopologyHint) [][]TopologyHint {
    	// Loop through all hint providers and save an accumulated list of the
    	// hints returned by each hint provider. If no hints are provided, assume
    	// that provider has no preference for topology-aware allocation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  6. src/math/big/nat_test.go

    		t.Fatalf("incorrect quotient: %s", s)
    	}
    }
    
    // TestIssue42552 triggers an edge case of recursive division
    // where the first division loop is never entered, and correcting
    // the remainder takes exactly two iterations in the final loop.
    func TestIssue42552(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    			return err
    		}
    		if bit {
    			b[0] |= delta
    		}
    		return nil
    	}
    
    	// Refining AC components is more complicated; see sections G.1.2.2 and G.1.2.3.
    	zig := zigStart
    	if d.eobRun == 0 {
    	loop:
    		for ; zig <= zigEnd; zig++ {
    			z := int32(0)
    			value, err := d.decodeHuffman(h)
    			if err != nil {
    				return err
    			}
    			val0 := value >> 4
    			val1 := value & 0x0f
    
    			switch val1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/compilability_check_util.cc

                             uncompilable_nodes);
      }
      return is_compilable;
    }
    
    // Tests whether 'while_node' is a completely compilable loop.
    // Every operator in the condition and body functions must be compilable for a
    // while loop to be compilable.
    bool RecursiveCompilabilityChecker::IsCompilableWhile(
        const Node& while_node, FunctionLibraryRuntime* lib_runtime,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. pkg/controller/podgc/gc_controller.go

    	nodeutil "k8s.io/kubernetes/pkg/util/node"
    	utilpod "k8s.io/kubernetes/pkg/util/pod"
    	"k8s.io/kubernetes/pkg/util/taints"
    )
    
    const (
    	// gcCheckPeriod defines frequency of running main controller loop
    	gcCheckPeriod = 20 * time.Second
    	// quarantineTime defines how long Orphaned GC waits for nodes to show up
    	// in an informer before issuing a GET call to check if they are truly gone
    	quarantineTime = 40 * time.Second
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/runtime/proc_test.go

    		c <- true
    	}()
    	<-c
    	// Loop because the break might get eaten by the scheduler.
    	// Break twice to break both the netpoll we started and the
    	// scheduler netpoll.
    loop:
    	for {
    		runtime.Usleep(100)
    		runtime.NetpollBreak()
    		runtime.NetpollBreak()
    		select {
    		case <-c:
    			break loop
    		default:
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top