Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 114 for cherries (0.3 sec)

  1. src/image/jpeg/idct.go

    package jpeg
    
    // This is a Go translation of idct.c from
    //
    // http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_IEC_13818-4_2004_Conformance_Testing/Video/verifier/mpeg2decode_960109.tar.gz
    //
    // which carries the following notice:
    
    /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
    
    /*
     * Disclaimer of Warranty
     *
     * These software programs are available to the user without any license fee or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types_test.go

    			name:        "event with resource = 'Pod' matching with coming events carries same actionType",
    			event:       ClusterEvent{Resource: Pod, ActionType: UpdateNodeLabel | UpdateNodeTaint},
    			comingEvent: ClusterEvent{Resource: Pod, ActionType: UpdateNodeLabel},
    			wantResult:  true,
    		},
    		{
    			name:        "event with resource = '*' matching with coming events carries same actionType",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  3. cmd/storage-datatypes.go

    	FSType     string
    	RootDisk   bool
    	Healing    bool
    	Scanning   bool
    	Endpoint   string
    	MountPath  string
    	ID         string
    	Rotational bool
    	Metrics    DiskMetrics
    	Error      string // carries the error over the network
    }
    
    // DiskMetrics has the information about XL Storage APIs
    // the number of calls of each API and the moving average of
    // the duration of each API.
    type DiskMetrics struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            loggingManager.attachSystemOutAndErr();
    
            // Making the daemon infrastructure log with DEBUG. This is only for the infrastructure!
            // Each build request carries it's own log level and it is used during the execution of the build (see LogToClient)
            loggingManager.setLevelInternal(LogLevel.DEBUG);
    
            loggingManager.start();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    		ExecSeatsGaugeVec:      metrics.PriorityLevelExecutionSeatsGaugeVec,
    		QueueSetFactory:        fqs.NewQueueSetFactory(clk),
    	})
    }
    
    // TestableConfig carries the parameters to an implementation that is testable
    type TestableConfig struct {
    	// Name of the controller
    	Name string
    
    	// Clock to use in timing deliberate delays
    	Clock clock.PassiveClock
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/math/big/arith_arm64.s

    	STP	(R6, R7), -16(R3);			\
    	SUB	$4, counter;
    
    // func addVW(z, x []Word, y Word) (c Word)
    // The 'large' branch handles large 'z'. It checks the carry flag on every iteration
    // and switches to copy if we are done with carries. The copying is skipped as well
    // if 'x' and 'z' happen to share the same underlying storage.
    // The overhead of the checking and branching is visible when 'z' are small (~5%),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. pkg/registry/core/service/allocator/bitmap.go

    // by counting the set bits in r.allocated.
    //
    // TODO: use RLE and compact the allocator to minimize space.
    type AllocationBitmap struct {
    	// strategy carries the details of how to choose the next available item out of the range
    	strategy bitAllocator
    	// max is the maximum size of the usable items in the range
    	max int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. pkg/proxy/servicechangetracker.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/metrics"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    )
    
    // ServiceChangeTracker carries state about uncommitted changes to an arbitrary number of
    // Services, keyed by their namespace and name.
    type ServiceChangeTracker struct {
    	// lock protects items.
    	lock sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. docs/features/interceptors.md

     * Not invoked for cached responses that short-circuit the network.
     * Observe the data just as it will be transmitted over the network.
     * Access to the `Connection` that carries the request.
    
    ### Rewriting Requests
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. src/crypto/aes/block.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This Go implementation is derived in part from the reference
    // ANSI C implementation, which carries the following notice:
    //
    //	rijndael-alg-fst.c
    //
    //	@version 3.0 (December 2000)
    //
    //	Optimised ANSI C code for the Rijndael cipher (now AES)
    //
    //	@author Vincent Rijmen <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top