Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,250 for clean (0.05 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

        }
    
        @Requires(UnitTestPreconditions.HasXCode)
        @ToBeFixedForConfigurationCache
        @Ignore("https://github.com/gradle/gradle-native-private/issues/273")
        def "can clean from xcode"() {
            useXcodebuildTool()
            def app = new SwiftApp()
    
            given:
            buildFile << """
                apply plugin: 'swift-application'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/server.go

    func SetServiceResolverForTests(resolver webhook.ServiceResolver) func() {
    	if testServiceResolver != nil {
    		panic("test service resolver is set: tests are either running concurrently or clean up was skipped")
    	}
    
    	testServiceResolver = resolver
    
    	return func() {
    		testServiceResolver = nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

       * <p>Note: in principle this should never need to be used, but it might be useful if the
       * semantics of an implementation disagree in unforeseen ways with the semantics expected by a
       * test, or to keep dependent builds clean in spite of an erroneous test.
       */
      @CanIgnoreReturnValue
      public B suppressing(Method... methods) {
        return suppressing(Arrays.asList(methods));
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/controller/storageversiongc/gc_controller.go

    			lease.Labels[controlplane.IdentityLeaseComponentLabelKey] != controlplane.KubeAPIServer {
    			// We cannot find a corresponding identity lease from apiserver as well.
    			// We need to clean up this storage version.
    			hasInvalidID = true
    			continue
    		}
    		serverStorageVersions = append(serverStorageVersions, v)
    	}
    	if !hasInvalidID {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

        "mlir::quant::QuantizationDialect",
        "mlir::quantfork::QuantizationForkDialect",
      ];
    }
    
    def PostQuantizePass : Pass<"stablehlo-post-quantize", "mlir::func::FuncOp"> {
      let summary = "Apply clean-up after quantization.";
      let dependentDialects = [
        "mlir::stablehlo::StablehloDialect",
        "mlir::quantfork::QuantizationForkDialect",
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

                                      partitioned_input.getInputs().getTypes())) {
          continue;
        }
    
        // we only want to create one read variable op per unique input
        // otherwise tpu rewriting will fail to clean up the duplicates
        llvm::SmallMapVector<Value, Value, 4> read_variable_ops;
        llvm::SmallVector<Value, 4> partitioned_reads;
        builder.setInsertionPoint(partitioned_input);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/net_test.go

    	assert.Equal(t, nlDeps.DelLoopbackRoutesCnt.Load(), 1)
    	// make sure the uid was taken from cache and netns closed
    	netns := fixture.podNsMap.Take(string(pod.UID))
    	assert.Equal(t, nil, netns)
    
    	// run gc to clean up ns:
    
    	//revive:disable-next-line:call-to-gc Just a test that we are cleaning up the netns
    	runtime.GC()
    	assertNSClosed(t, closed)
    }
    
    func TestServerDeletePod(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_linux.go

    // currently-configured mode.
    func platformCleanup(ctx context.Context, mode proxyconfigapi.ProxyMode, cleanupAndExit bool) error {
    	var encounteredError bool
    
    	// Clean up iptables and ipvs rules if switching to nftables, or if cleanupAndExit
    	if !isIPTablesBased(mode) || cleanupAndExit {
    		ipts, _ := getIPTables(v1.IPFamilyUnknown)
    		execer := exec.New()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    "C:\\Program Files\\Java\\jdk1.8/bin/java.exe" -Xmx128m -Dfile.encoding=UTF-8 -XX:MaxPermSize=512m "-Djava.io.tmpdir=C:\\tcagent1\\temp\\buildTmp" "-Dorg.gradle.appname=gradlew" -classpath "C:\\tcagent1\\work\\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                }
                tasks.whenTaskAdded {
                    // force realization of all tasks
                }
                tasks.register("foo") {
                    dependsOn(project.getTasksByName("clean", true))
                }
            """
            file("sub/build.gradle") << """
                plugins {
                    id 'base'
                }
                afterEvaluate {
                    tasks.register("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top