Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 177 for greatest (0.35 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		}
    		if resourceInfo != nil {
    			resourceInfos = append(resourceInfos, resourceInfo)
    		}
    	}
    	return apiResources, resourceInfos, ws, errors
    }
    
    // newWebService creates a new restful webservice with the api installer's prefix and version.
    func (a *APIInstaller) newWebService() *restful.WebService {
    	ws := new(restful.WebService)
    	ws.Path(a.prefix)
    	// a.prefix contains "prefix/group/version"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    when the provided closure is otherwise an invalid configure closure for a Configuration.
    In this case, the `repositories` closure executes as if it were called at the script-level, and
    creates an unconfigured `repositories` Configuration:
    
    ```groovy
    configurations {
        repositories {
            mavenCentral()
        }
        someConf {
            canBeConsumed = false
            canBeResolved = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    }
    ----
    ======
    =====
    
    In the above example, the build logic uses iteration and mutation to try to set a default version for a particular dependency if the version is not already set.
    Build logic like the above example creates challenges in resolving declared dependencies, as reporting tools will display this dependency as if the user declared the version as "2.0", even though they never did.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeToken.java

        return new TypeResolver()
            .where(supertypeWithArgsFromSubtype, runtimeType)
            .resolveType(genericSubtype.runtimeType);
      }
    
      /**
       * Creates an array class if {@code componentType} is a class, or else, a {@link
       * GenericArrayType}. This is what Java7 does for generic array type parameters.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    			return nil
    		}
    	}
    
    	return fmt.Errorf(
    		"No Mapper have expected MapPodDeviceCallCount. Expected: <%v>.",
    		expectedMapPodDeviceCallCount)
    }
    
    // GetTestVolumePluginMgr creates, initializes, and returns a test volume plugin
    // manager and fake volume plugin using a fake volume host.
    func GetTestVolumePluginMgr(t *testing.T) (*volume.VolumePluginMgr, *FakeVolumePlugin) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    }
    
    // getOrCreateServingInfoFor gets the CRD serving info for the given CRD UID if the key exists in the storage map.
    // Otherwise the function fetches the up-to-date CRD using the given CRD name and creates CRD serving info.
    func (r *crdHandler) getOrCreateServingInfoFor(uid types.UID, name string) (*crdInfo, error) {
    	storageMap := r.customStorage.Load().(crdStorageMap)
    	if ret, ok := storageMap[uid]; ok {
    		return ret, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def __init__(self, ctx, op_defs):
        super(TFRGen, self).__init__(ctx)
        self.ctx = ctx
        self.symbol_table = SymbolTable()
        self._op_defs = op_defs
    
      def _create_mlir_loc(self, loc):
        """Creates mlir location from autograph ORIGIN value.
    
        Args:
          loc: OriginInfo
    
        Returns:
          A serialized mlir location string.
        """
        if loc is not None and loc.loc.filename:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    	firewallIPsMap     = "firewall-ips"
    	firewallCheckChain = "firewall-check"
    
    	// masquerading
    	markMasqChain     = "mark-for-masquerade"
    	masqueradingChain = "masquerading"
    )
    
    // NewDualStackProxier creates a MetaProxier instance, with IPv4 and IPv6 proxies.
    func NewDualStackProxier(
    	ctx context.Context,
    	syncPeriod time.Duration,
    	minSyncPeriod time.Duration,
    	masqueradeAll bool,
    	masqueradeBit int,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	scaleDownEventsLock sync.RWMutex
    
    	// Storage of HPAs and their selectors.
    	hpaSelectors    *selectors.BiMultimap
    	hpaSelectorsMux sync.Mutex
    }
    
    // NewHorizontalController creates a new HorizontalController.
    func NewHorizontalController(
    	ctx context.Context,
    	evtNamespacer v1core.EventsGetter,
    	scaleNamespacer scaleclient.ScalesGetter,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // Replace
    //   OneHot(index, depth, on=1.0f, off=0.0f, axis=-1) * filter
    // With
    //   EmbeddingLookup(index, Transpose(filter))
    //
    // OneHot with on=1 off=0 axis=-1, where `index` is a single element tensor,
    // creates a tensor of size depth, and all values are 0, except for the element
    // at `index`, which is 1. Multiplying such a tensor with a 2D filter esentially
    // returns the single column in filter as a 1D tensor. If the input has multiple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top