Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 158 for recreate (0.29 sec)

  1. pkg/util/iptables/iptables_linux.go

    	// iptables-restore version is if it doesn't support --wait, so we
    	// can't assume which lock method it'll use.
    
    	// Roughly duplicate iptables 1.6.x xtables_lock() function.
    	l.lock16, err = os.OpenFile(lockfilePath16x, os.O_CREATE, 0600)
    	if err != nil {
    		return nil, fmt.Errorf("failed to open iptables lock %s: %v", lockfilePath16x, err)
    	}
    
    	if err := wait.PollImmediate(200*time.Millisecond, 2*time.Second, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface BuildSession extends UserHome, CrossBuildSession {}
    
        /**
         * These services are recreated when in continuous build and shared across all nested builds.
         * They are closed when the build invocation is completed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/internal/bootstrap_test/overlaydir_test.go

    			return nil
    		}
    
    		// Otherwise, copy the bytes.
    		src, err := os.Open(srcPath)
    		if err != nil {
    			return err
    		}
    		defer src.Close()
    
    		dst, err := os.OpenFile(dstPath, os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)
    		if err != nil {
    			return err
    		}
    
    		_, err = io.Copy(dst, src)
    		if closeErr := dst.Close(); err == nil {
    			err = closeErr
    		}
    		return err
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:35:05 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/log/slog/example_level_handler_test.go

    // existing Handler while preserving its other behavior.
    //
    // This example demonstrates increasing the log level to reduce a logger's
    // output.
    //
    // Another typical use would be to decrease the log level (to LevelDebug, say)
    // during a part of the program that was suspected of containing a bug.
    func ExampleHandler_levelHandler() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/gateway_conformance_test.go

    }
    
    var skippedTests = map[string]string{}
    
    func TestGatewayConformance(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			crd.DeployGatewayAPIOrSkip(ctx)
    
    			// Precreate the GatewayConformance namespaces, and apply the Image Pull Secret to them.
    			if ctx.Settings().Image.PullSecret != "" {
    				for _, ns := range conformanceNamespaces {
    					namespace.Claim(ctx, namespace.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveTester.java

            "remove(duplicate) should remove the first instance of the "
                + "duplicate element in the list",
            firstIndex == getList().indexOf(duplicate));
        assertEquals(
            "remove(present) should decrease the size of a list by one.",
            initialSize - 1,
            getList().size());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetContainer.java

            this.taskDependencyFactory = taskDependencyFactory;
            this.instantiator = instantiator;
            this.objectFactory = objectFactory;
        }
    
        @Override
        protected SourceSet doCreate(String name) {
            DefaultSourceSet sourceSet = instantiator.newInstance(DefaultSourceSet.class, name, objectFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. architecture/build-state-model.md

    The build process state also includes state that is tied to a particular Gradle user home directory.
    When that directory changes between Gradle invocations, the state is discarded and recreated.
    Typically, the Gradle user home directory does not change for a given process, so this is effectively process state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultFileContentCacheFactory.java

            }
    
            private void assertStoredIn(IndexedCache<HashCode, V> store) {
                if (this.contentCache != store) {
                    throw new IllegalStateException("Cache " + name + " cannot be recreated with different parameters");
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

        /**
         * Called once per build invocation on a build tree to register any build tree scoped services to use during that build invocation.  These services are recreated when in continuous mode and shared across all nested builds. They are closed when the build invocation is completed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top