Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for noOp (0.08 sec)

  1. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

            }
    
            @Override
            protected SnapshotHierarchy updateNotifyingListeners(UpdateFunction updateFunction) {
                return updateFunction.update(SnapshotHierarchy.NodeDiffListener.NOOP);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    	"io"
    	"net"
    	"net/url"
    
    	"github.com/spf13/pflag"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
    	"k8s.io/apiextensions-apiserver/pkg/apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultScriptHandlerTest.groovy

        def dependencyHandler = Mock(DependencyHandler) {
            getArtifactTypes() >> new DefaultArtifactTypeContainer(TestUtil.instantiatorFactory().decorateLenient(), AttributeTestUtil.attributesFactory(), CollectionCallbackActionDecorator.NOOP)
        }
        def configurationContainer = Mock(RoleBasedConfigurationContainerInternal)
        def configuration = Mock(ResettableConfiguration)
        def scriptSource = Stub(ScriptSource)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 19:43:17 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	//  2. If DebugDir is present, log to a file within it.
    	//  3. If both LogWriter and DebugDir are present, log to a multi writer.
    	//  4. If neither LogWriter nor DebugDir are present, log to a noop logger.
    	var logWriters []io.Writer
    	logFile, err := debugLogFile(dir.DebugDir())
    	if err != nil {
    		logFile = nil
    	}
    	if logFile != nil {
    		logWriters = append(logWriters, logFile)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //   ApplyWeightUpdates_1 -> Computation_B
            //   ApplyWeightUpdates_2 -> Computation_C
            //   Computation_A -> NoOp
            //   Computation_B -> NoOp
            //   Computation_C -> NoOp
            //   "iteration++" -> NoOp
            // }
            //
            // In the graph above we can't cluster iteration++ with any of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. 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)
  9. pkg/wasm/convert.go

    				if err != nil {
    					if !wasmHTTPConfig.GetConfig().GetFailOpen() {
    						convertErrs[i] = err
    						return
    					}
    					// Use NOOP filter because the download failed.
    					newExtensionConfig, err = createHTTPAllowAllFilter(extConfig.GetName())
    					if err != nil {
    						// If the fallback is failing, send the Nack regardless of fail_open.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. 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)
Back to top