Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,250 for clean (0.16 sec)

  1. hack/golangci.yaml

              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    ==== Disabling merging with a complete overwrite
    
    To completely rewrite existing IDEA files, execute a clean task together with its corresponding generation task, like “`gradle cleanIdea idea`” (in that order). If you want to make this the default behavior, add “`tasks.idea.dependsOn(cleanIdea)`” to your build script. This makes it unnecessary to execute the clean task explicitly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/QueuesTest.java

          assertThat(drained).isAtMost(1);
    
          assertThat(timer.elapsed(MILLISECONDS)).isAtLeast(10L);
    
          // If even the first one wasn't there, clean up so that the next test doesn't see an element.
          producerThread.cancel(true);
          producer.doneProducing.await();
          if (drained == 0) {
            q.poll(); // not necessarily there if producer was interrupted
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_test.cc

      // Execute.
      TF_ExecuteOperation(op, 2, inputs, o, status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
    
      // Clean up operation and inputs.
      TF_DeleteAbstractOp(op);
      TF_DeleteAbstractTensor(at);
    
      // Verify the results.
      ASSERT_EQ(1, TF_OutputListNumOutputs(o));
      TF_AbstractTensor* result = TF_OutputListGet(o, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

            packagingTasks(compileClasspathPackaging, 'd')
            packagingTasks(compileClasspathPackaging, 'e')
            packagingTasks(compileClasspathPackaging, 'f')
    
            when:
            succeeds 'clean', ':verifyClasspath'
    
            then:
            executedAndNotSkipped ':b:myFeatureJar', ':c:jar', ':d:jar', ':g:jar' // runtime
            packagingTasks(compileClasspathPackaging, 'e') // compile time only
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    			errs = append(errs, configurationError)
    		}
    	}
    
    	// Clean up orphaned policies by replacing the old cache of compiled policies
    	// (the map of used policies is updated by `compilePolicy`)
    	for policyKey := range s.compiledPolicies {
    		if _, wasSeen := policiesToBindings[policyKey]; !wasSeen {
    			delete(s.compiledPolicies, policyKey)
    		}
    	}
    
    	// Clean up orphaned param informers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            failure.assertHasCause("Invalid number of threads '-1'.  Number should not be negative.")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/2326")
        def "check task should not be up-to-date after clean if it only outputs to console"() {
            given:
            badCode()
            buildFile << """
                pmd {
                    consoleOutput = true
                    ignoreFailures = true
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. build/common.sh

      fi
      "${DOCKER[@]}" rm -f -v "$1" >/dev/null 2>&1 || true
    }
    
    # ---------------------------------------------------------------------------
    # Building
    
    
    function kube::build::clean() {
      if kube::build::has_docker ; then
        kube::build::docker_delete_old_containers "${KUBE_BUILD_CONTAINER_NAME_BASE}"
        kube::build::docker_delete_old_containers "${KUBE_RSYNC_CONTAINER_NAME_BASE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

            and:
            if (GradleContextualExecuter.isConfigCache()) {
                result.assertConfigurationCacheStateLoaded()
            }
    
            when: 'clean re-build'
            agpRunner(agpVersion, 'clean').build()
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(runner.projectDir, IntegrationTestBuildContext.INSTANCE.gradleUserHomeDir)
            result = runner.build()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            gitCheckout.file('.git').assertExists()
        }
    
        @Issue('gradle/gradle-native#207')
        @ToBeFixedForConfigurationCache
        def 'can use repositories even when clean is run'() {
            given:
            def commit = repo.commit('initial commit')
    
            settingsFile << """
                sourceControl {
                    vcsMappings {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top