Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 723 for cloning (0.21 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                    assert registry.getAll(String).sort() == ["12", "123"]
                }
            }
        }
    
        def "cannot look up services while closing"() {
            given:
            def registry = new DefaultServiceRegistry()
            registry.add(Closeable, {
                instant.closing
                thread.blockUntil.lookupDone
            } as Closeable)
    
            when:
            async {
                start() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

                        System.out.println("< html allowed, cdata closing token ]]> encoded!");
                        System.out.print("no EOL, ");
                        System.out.println("non-asci char: ż");
                        System.out.println("xml entity: &amp;");
                        System.err.println("< html allowed, cdata closing token ]]> encoded!");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. security/pkg/credentialfetcher/plugin/gce.go

    	p := &GCEPlugin{
    		aud:              audience,
    		jwtPath:          jwtPath,
    		identityProvider: identityProvider,
    		closing:          make(chan bool),
    	}
    	if rotateToken {
    		go p.startTokenRotationJob()
    	}
    	return p
    }
    
    func (p *GCEPlugin) Stop() {
    	close(p.closing)
    }
    
    func (p *GCEPlugin) startTokenRotationJob() {
    	// Wake up once in a while and refresh GCE VM credential.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    // of UAX#9.
    //
    // Some preprocessing is done for each rune before data is passed to this
    // algorithm:
    //  - opening and closing brackets are identified
    //  - a bracket pair type, like '(' and ')' is assigned a unique identifier that
    //    is identical for the opening and closing bracket. It is left to do these
    //    mappings.
    //  - The BPA algorithm requires that bracket characters that are canonical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.16.md

    - Add CSI Migration Shim for VerifyVolumesAreAttached and BulkVolumeVerify ([#80443](https://github.com/kubernetes/kubernetes/pull/80443), [@davidz627](https://github.com/davidz627))
    - Promotes VolumePVCDataSource (Cloning) feature to beta for 1.16 release ([#81792](https://github.com/kubernetes/kubernetes/pull/81792), [@j-griffith](https://github.com/j-griffith))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Closer.java

               * place as Closeables logs.
               */
              Closeables.logger.log(
                  Level.WARNING, "Suppressing exception thrown when closing " + closeable, suppressed);
            }
          };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // backedges of the graph, orders the nodes and infers the shapes.
      // PrepareConvert needs to ensure that the original `graph` is cloned prior
      // execution. The cloning procedure relies on the roundtrip through the
      // GraphDef. Graph to GraphDef def conversion is heavy, in case, `graph_def`
      // was obtained previously provide it to the PrepareConvert to reuse.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. pkg/config/validation/header_value_validator.go

    	ExpectArrayDelimiterOrEndParserState                    // expect array delimiter (,) or end of array (])
    	ExpectArgsEndParserState                                // expect closing ) in %VAR(...)%
    	ExpectVariableEndParserState                            // expect closing % in %VAR(...)%
    )
    
    // validateHeaderValue is golang port version of
    // https://github.com/envoyproxy/envoy/blob/master/source/common/router/header_parser.cc#L73
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 21:37:52 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

                        .assertStdout(equalTo("""< html allowed, cdata closing token ]]> encoded!
    no EOL, non-ascii char: ż
    xml entity: &amp;
    """))
                        .assertStderr(equalTo("< html allowed, cdata closing token ]]> encoded!\n"))
            } else {
                encoding
                        .assertTestCaseStdout("encodesCdata", equalTo("""< html allowed, cdata closing token ]]> encoded!
    no EOL, non-ascii char: ż
    xml entity: &amp;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  10. src/runtime/netpoll.go

    func poll_runtime_pollClose(pd *pollDesc) {
    	if !pd.closing {
    		throw("runtime: close polldesc w/o unblock")
    	}
    	wg := pd.wg.Load()
    	if wg != pdNil && wg != pdReady {
    		throw("runtime: blocked write on closing polldesc")
    	}
    	rg := pd.rg.Load()
    	if rg != pdNil && rg != pdReady {
    		throw("runtime: blocked read on closing polldesc")
    	}
    	netpollclose(pd.fd)
    	pollcache.free(pd)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top