Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for NOOP (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(NoOpPass)
    
      NoOpPass() = default;
    
      llvm::StringRef getArgument() const final { return "no-op-pass"; }
    
      void runOnOperation() override {
        // Noop pass does nothing on the operation.
      }
    };
    
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>> CreateNoOpPass() {
      return std::make_unique<NoOpPass>();
    }
    
    class ParentPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleComponentResolveMetadata.java

        }
    
        @Override
        public VariantMetadataRules getVariantMetadataRules() {
            return VariantMetadataRules.noOp();
        }
    
        @Override
        public Set<String> getConfigurationNames() {
            return configurations.keySet();
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. pkg/volume/util/selinux.go

    	}
    	// InitLabels() may allocate a new unique SELinux label in kubelet memory. The label is *not* allocated
    	// in the container runtime. Clear it to avoid memory problems.
    	// ReleaseLabel on non-allocated label is NOOP.
    	selinux.ReleaseLabel(processLabel)
    
    	return fileLabel, nil
    }
    
    // Convert SELinuxOptions to []string accepted by label.InitLabels
    func contextOptions(opts *v1.SELinuxOptions) []string {
    	if opts == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 14:40:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    import (
    	"context"
    	"net/http"
    	"net/http/httptest"
    	"testing"
    	"time"
    
    	sdktrace "go.opentelemetry.io/otel/sdk/trace"
    	"go.opentelemetry.io/otel/sdk/trace/tracetest"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func TestTrackStartedWithContextAlreadyHasFilterRecord(t *testing.T) {
    	filterName := "my-filter"
    	var (
    		callCount    int
    		filterRecord *requestFilterRecord
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

        /**
         * Wraps the given runnable in an {@link Action}, where the execute implementation runs the runnable ignoring the argument.
         *
         * If the given runnable is {@code null}, the action returned is effectively a noop.
         *
         * @param runnable The runnable to run for the action execution.
         * @return An action that runs the given runnable, ignoring the argument.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/webhook_server.go

    			Response: &v1beta1.AdmissionResponse{
    				Allowed: true,
    				AuditAnnotations: map[string]string{
    					"invalid*key": "value1",
    				},
    			},
    		})
    	case "/noop":
    		w.Header().Set("Content-Type", "application/json")
    		json.NewEncoder(w).Encode(&v1beta1.AdmissionReview{
    			Response: &v1beta1.AdmissionResponse{
    				Allowed: true,
    			},
    		})
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 15 11:11:25 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring.go

    // generation of the entry that should be deleted. If the generation has been
    // changed (e.g. if a set has occurred on an existing element but the old
    // cleanup still runs), this is a noop. If the generation argument is 0, the
    // entry's generation is ignored and the entry is deleted.
    //
    // del must be called under the write lock.
    func (c *Expiring) del(key interface{}, generation uint64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager.go

    	GetNodeConfig() NodeConfig
    
    	// Status returns internal Status.
    	Status() Status
    
    	// NewPodContainerManager is a factory method which returns a podContainerManager object
    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. pkg/kubemark/hollow_kubelet.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubemark
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. cluster/get-kube.sh

      if [[ ${KUBE_VERSION} =~ ${KUBE_RELEASE_VERSION_REGEX} ]]; then
        # Use KUBERNETES_RELEASE_URL for Releases and Pre-Releases
        # ie. 1.18.0 or 1.19.0-beta.0
        # shellcheck disable=SC2269 # this line is a noop but it helps with reading
        KUBERNETES_RELEASE_URL="${KUBERNETES_RELEASE_URL}"
      elif [[ ${KUBE_VERSION} =~ ${KUBE_CI_VERSION_REGEX} ]]; then
        # Override KUBERNETES_RELEASE_URL to point to the CI bucket;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top