Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 7,530 for reserved4 (0.17 sec)

  1. src/go/doc/synopsis_test.go

    	{"Package 안녕.世界", 17, "Package 안녕."},
    	{"Package foo does bar.", 21, "Package foo does bar."},
    	{"Copyright 2012 Google, Inc. Package foo does bar.", 27, ""},
    	{"All Rights reserved. Package foo does bar.", 20, ""},
    	{"All rights reserved. Package foo does bar.", 20, ""},
    	{"Authors: ******@****.***. Package foo does bar.", 21, ""},
    	{"typically invoked as ``go tool asm'',", 37, "typically invoked as “go tool asm”,"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/internal/goarch/goarch.go

    const Int64Align = PtrSize
    
    // MinFrameSize is the size of the system-reserved words at the bottom
    // of a frame (just above the architectural stack pointer).
    // It is zero on x86 and PtrSize on most non-x86 (LR-based) systems.
    // On PowerPC it is larger, to cover three more reserved words:
    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = _MinFrameSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. src/go/doc/comment/mkstd.sh

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This could be a good use for embed but go/doc/comment
    # is built into the bootstrap go command, so it can't use embed.
    # Also not using embed lets us emit a string array directly
    # and avoid init-time work.
    
    (
    echo "// Copyright 2022 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:42 UTC 2022
    - 768 bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    	for _, node := range nodes {
    		if !slices.Contains(schedulingCtx.Spec.PotentialNodes, node.Node().Name) {
    			return false
    		}
    	}
    	return true
    }
    
    // Reserve reserves claims for the pod.
    func (pl *dynamicResources) Reserve(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeName string) (status *framework.Status) {
    	if !pl.enabled {
    		return nil
    	}
    	state, err := getStateData(cs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/ipallocator.go

    	a.metrics.setAllocated(a.metricLabel, a.Used())
    	a.metrics.setAvailable(a.metricLabel, a.Free())
    	return nil
    }
    
    // Allocate attempts to reserve the provided IP. ErrNotInRange or
    // ErrAllocated will be returned if the IP is not valid for this range
    // or has already been reserved.  ErrFull will be returned if there
    // are no addresses left.
    // Only for testing, it will fail to create the IPAddress object because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.h

      size_t struct_size;
      void* ext;  // reserved for future use
    
      SP_DeviceFns* device_fns;  // output, to be filled by plugin
    } SE_CreateDeviceFnsParams;
    
    #define SE_CREATE_DEVICE_FNS_PARAMS_STRUCT_SIZE \
      TF_OFFSET_OF_END(SE_CreateDeviceFnsParams, device_fns)
    
    typedef struct SP_StreamExecutor {
      size_t struct_size;
      void* ext;  // reserved for future use
    
      /*** ALLOCATION CALLBACKS ***/
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      llvm::SmallVector<Value, 4> data_fetches;
      llvm::SmallVector<Type, 4> data_types;
      llvm::SmallVector<Value, 4> control_fetches;
      data_fetches.reserve(fetch.getFetches().size());
      data_types.reserve(data_fetches.capacity());
      control_fetches.reserve(data_fetches.capacity());
    
      for (auto value : fetch.getFetches()) {
        if (mlir::isa<ControlType>(value.getType())) {
          control_fetches.push_back(value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

        }
    
        def 'only excluding non-preserved files works as expected'() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                somePreservedDir {
                    file 'preserved.txt'
                    file 'also-not-preserved.txt'
                }
                someOtherDir {
                    file 'preserved.txt'
                    file 'not-preserved.txt'
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/syscall_windows.go

    type IpAdapterDnsServerAdapter struct {
    	Length   uint32
    	Reserved uint32
    	Next     *IpAdapterDnsServerAdapter
    	Address  SocketAddress
    }
    
    type IpAdapterPrefix struct {
    	Length       uint32
    	Flags        uint32
    	Next         *IpAdapterPrefix
    	Address      SocketAddress
    	PrefixLength uint32
    }
    
    type IpAdapterWinsServerAddress struct {
    	Length   uint32
    	Reserved uint32
    	Next     *IpAdapterWinsServerAddress
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller_test.go

    		},
    		{
    			name:            "stay-reserved-seen",
    			pods:            []*v1.Pod{testPodWithResource},
    			key:             claimKey(testClaimReserved),
    			claims:          []*resourcev1alpha2.ResourceClaim{testClaimReserved},
    			expectedClaims:  []resourcev1alpha2.ResourceClaim{*testClaimReserved},
    			expectedMetrics: expectedMetrics{0, 0},
    		},
    		{
    			name:            "stay-reserved-not-seen",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top