Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,548 for ownership (0.14 sec)

  1. hack/verify-e2e-test-ownership.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script verifies the following e2e test ownership policies
    # - tests MUST start with [sig-foo]
    # - tests SHOULD NOT have multiple [sig-foo] tags
    # TODO: these two can be dropped if KubeDescribe is gone from codebase
    # - tests MUST NOT have [k8s.io] in test names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_experimental.h

    // in the plugin for Training. The API takes in the context with indices for
    // the input and value tensors. It also accepts the copy callback provided by
    // pluggable vendor to do the copying of the tensors. The caller takes ownership
    // of the `source` and `dest` tensors and is responsible for freeing them with
    // TF_DeleteTensor. This function will return an error when the following
    // conditions are met:
    //   1. `validate_shape` is set to `true`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. pkg/volume/volume_linux.go

    		klog.Warningf("Setting volume ownership for %s and fsGroup set. If the volume has a lot of files then setting volume ownership could be slow, see https://github.com/kubernetes/kubernetes/issues/69699", dir)
    	})
    	defer timer.Stop()
    
    	if skipPermissionChange(mounter, dir, fsGroup, fsGroupChangePolicy) {
    		klog.V(3).InfoS("Skipping permission and ownership change for volume", "path", dir)
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/base/public/runtime.h

      friend class TensorHandle;
    
      // Wraps a TFE_Context. Takes ownership of ctx.
      explicit Runtime(TFE_Context* ctx) : ctx_(ctx) {}
    
      // Deletes the currently wrapped TFE_Context, swaps it with ctx,
      // and takes ownership of ctx.
      void Reset(TFE_Context* ctx) { ctx_.reset(ctx); }
    
      // Returns the TFE_Context that this object wraps. This object
      // retains ownership of the pointer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. src/sync/mutex.go

    	// the ownership. New arriving goroutines have an advantage -- they are
    	// already running on CPU and there can be lots of them, so a woken up
    	// waiter has good chances of losing. In such case it is queued at front
    	// of the wait queue. If a waiter fails to acquire the mutex for more than 1ms,
    	// it switches mutex to the starvation mode.
    	//
    	// In starvation mode ownership of the mutex is directly handed off from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. architecture/standards/0005-introduce-core-ui-architecture-module.md

    This ADR does not specify the owner of this new architecture module. However, as a separate module, it can be assigned ownership independently of the other core services.
    
    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    - Introduce the module and move the services and their implementations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/base/public/tensorhandle.h

     private:
      // Wraps a TFE_TensorHandle. Takes ownership of handle.
      explicit TensorHandle(TFE_TensorHandle* handle) : handle_(handle) {}
    
      // TensorHandle is not copyable
      TensorHandle(const TensorHandle&) = delete;
      TensorHandle& operator=(const TensorHandle&) = delete;
    
      // Returns the underlying TFE_TensorHandle that this object wraps.
      // This object retains ownership of the pointer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

     package org.apache.maven.plugin.coreit; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/base/public/status.h

      friend class TensorHandle;
    
      // Wraps a TF_Status*, and takes ownership of it.
      explicit Status(TF_Status* status) : status_(status) {}
    
      // Status is not copyable
      Status(const Status&) = delete;
      Status& operator=(const Status&) = delete;
    
      // Returns the TF_Status that this object wraps. This object
      // retains ownership of the pointer.
      TF_Status* GetTFStatus() const { return status_.get(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  10. maven-core/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

     package org.apache.maven.plugin.coreit; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 13.2K bytes
    - Viewed (0)
Back to top