Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 6,499 for happen (0.1 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

     * #iterator()} method after the first, and whose iterator is always unmodifiable.
     *
     * <p>The {@code Iterable} specification does not make it absolutely clear what should happen on a
     * second invocation, so implementors have made various choices, including:
     *
     * <ul>
     *   <li>returning the same iterator again
     *   <li>throwing an exception of some kind
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/model/ModelReport.java

            ModelRegistry modelRegistry = getModelRegistry();
            ModelNode rootNode = modelRegistry.realizeNode(ModelPath.ROOT);
            // Ensure binding validation has been done. This should happen elsewhere
            modelRegistry.bindAllReferences();
            textModelReportRenderer.render(rootNode);
    
            textModelReportRenderer.completeProject(projectDetails);
            textModelReportRenderer.complete();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/phi_test.go

    		u = int32(data2[20])
    		v = int32(data2[21])
    		w = int32(data2[22])
    		x = int32(data2[23])
    		y = int32(data2[24])
    		z = int32(data2[25])
    	}
    	// Lots of phis of the form phi(int32,int64) of type int32 happen here.
    	// Some will be stack phis. For those stack phis, make sure the spill
    	// of the second argument uses the phi's width (4 bytes), not its width
    	// (8 bytes).  Otherwise, a random stack slot gets clobbered.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config_selfclient.go

    // to contact the server.
    func LoopbackHostPort(bindAddress string) (string, string, error) {
    	host, port, err := net.SplitHostPort(bindAddress)
    	if err != nil {
    		// should never happen
    		return "", "", fmt.Errorf("invalid server bind address: %q", bindAddress)
    	}
    
    	isIPv6 := netutils.IsIPv6String(host)
    
    	// Value is expected to be an IP or DNS name, not "0.0.0.0".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 23 00:06:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/cluster.go

    	kube.SetObjectFilter(c.Client, filter)
    
    	syncers := make([]ComponentConstraint, 0, len(handlers))
    	for _, h := range handlers {
    		switch action {
    		case Add:
    			syncers = append(syncers, h.clusterAdded(c))
    		case Update:
    			syncers = append(syncers, h.clusterUpdated(c))
    		}
    	}
    	if !c.Client.RunAndWait(c.stop) {
    		log.Warnf("remote cluster %s failed to sync", c.ID)
    		return
    	}
    	for _, h := range syncers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. internal/s3select/sql/stringfuncs.go

    import (
    	"errors"
    	"strings"
    )
    
    var (
    	errMalformedEscapeSequence  = errors.New("Malformed escape sequence in LIKE clause")
    	errInvalidTrimArg           = errors.New("Trim argument is invalid - this should not happen")
    	errInvalidSubstringIndexLen = errors.New("Substring start index or length falls outside the string")
    )
    
    const (
    	percent    rune = '%'
    	underscore rune = '_'
    	runeZero   rune = 0
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. pkg/kube/kclient/index.go

    			continue
    		}
    		res = append(res, item)
    	}
    	return res
    }
    
    // CreateIndexWithDelegate creates a simple index, keyed by key K, over an informer for O. This is similar to
    // Informer.AddIndex, but is easier to use and can be added after an informer has already started.
    // An additional ResourceEventHandler can be passed in that is guaranteed to happen *after* the index is updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuild.java

        public <T> T withState(Transformer<T, ? super GradleInternal> action) {
            // This should apply some locking, but most access to the build state does not happen via this method yet
            return action.transform(getMutableModel());
        }
    
        @Override
        public ExecutionResult<Void> finishBuild() {
            return getBuildController().finishBuild(null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

         * with merged information or a clone of {@code recessive} if
         * {@code dominant} is {@code null}.
         *
         * @param dominant the node
         * @param recessive if {@code null}, nothing will happen
         * @return the merged node
         */
        @Nullable
        static XmlNode merge(@Nullable XmlNode dominant, @Nullable XmlNode recessive) {
            return merge(dominant, recessive, null);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                // The close() on this loader will block until this method completes.
                JarEntry classEntry = jarFile.getJarEntry(classNameToPath(className));
                if (classEntry == null) {
                    // This can happen if the class was "injected" into the classloader, e.g. when decorated class is generated by the ObjectFactory.
                    // Injected classes reuse the protection domain. See ClassLoaderUtils.define and defineDecorator.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top