Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,361 for reserved1 (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/internal/edwards25519/scalar.go

    // Copyright (c) 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package edwards25519
    
    import (
    	"errors"
    	"internal/byteorder"
    )
    
    // A Scalar is an integer modulo
    //
    //	l = 2^252 + 27742317777372353535851937790883648493
    //
    // which is the prime order of the edwards25519 group.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/math/lgamma.go

    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    // Developed at SunPro, a Sun Microsystems, Inc. business.
    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_lgamma_r(x, signgamp)
    // Reentrant version of the logarithm of the Gamma function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

    # Copyright 2022 The TensorFlow Authors. All Rights Reserved.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_static_test.go

    				tc.description, tc.expCSet, cset)
    		}
    	}
    }
    
    // above test cases are without kubelet --reserved-cpus cmd option
    // the following tests are with --reserved-cpus configured
    type staticPolicyTestWithResvList struct {
    	description     string
    	topo            *topology.CPUTopology
    	numReservedCPUs int
    	reserved        cpuset.CPUSet
    	stAssignments   state.ContainerCPUAssignments
    	stDefaultCPUSet cpuset.CPUSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top