Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,953 for happen (0.27 sec)

  1. pilot/pkg/config/kube/gateway/gatewayclass.go

    		return nil
    	}
    	controller := builtinClasses[class]
    	classInfo, f := classInfos[controller]
    	if !f {
    		// Should only happen when ambient is disabled; otherwise builtinClasses and classInfos should be consistent
    		return nil
    	}
    	gc := &gateway.GatewayClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: string(class),
    		},
    		Spec: gateway.GatewayClassSpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    //   will often be more than two or three pointers to a particular object.
    // - References are only tracked as long as linked_ptr<> objects are copied.
    //   If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS
    //   will happen (double deletion).
    //
    // A good use of this class is storing object references in STL containers.
    // You can safely put linked_ptr<> in a vector<>.
    // Other uses may not be as good.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_darwin_arm64.c

    		fprintf(stderr, "runtime/cgo: no main bundle\n");
    		return;
    	}
    	CFURLRef url_ref = CFBundleCopyResourceURL(bundle, CFSTR("Info"), CFSTR("plist"), NULL);
    	if (url_ref == NULL) {
    		// No Info.plist found. It can happen on Corellium virtual devices.
    		return;
    	}
    	CFStringRef url_str_ref = CFURLGetString(url_ref);
    	char buf[MAXPATHLEN];
    	Boolean res = CFStringGetCString(url_str_ref, buf, sizeof(buf), kCFStringEncodingUTF8);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/arguments.go

    		// Warn in all other cases, but don't error out. This can happen only if the user has edited the argument list by hand, so they might know what they are doing
    		if err != nil {
    			if i != 0 {
    				klog.Warningf("[kubeadm] WARNING: The component argument %q could not be parsed correctly. The argument must be of the form %q. Skipping...\n", arg, "--")
    			}
    			continue
    		}
    
    		args = append(args, kubeadmapi.Arg{Name: key, Value: val})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K 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. .github/ISSUE_TEMPLATE/00-bug.yml

        validations:
          required: true
    
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
          description: Command invocations and their associated output, functions with their arguments and return results, full stacktraces for panics (upload a file if it is very long), etc. Prefer copying text output over using screenshots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    					check.crossCheck = false
    					break
    				}
    			}
    		}
    	}
    
    	if check.crossCheck {
    		y, err := constraint.Parse(line)
    		if err != nil {
    			// Should never happen - constraint.Parse never rejects a // +build line.
    			// Also, we just checked the syntax above.
    			// Even so, report.
    			check.pass.Reportf(pos, "%v", err)
    			check.crossCheck = false
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

            if (state != null) {
                return state.test;
            }
    
            if (currentParent != null) {
                return currentParent;
            }
    
            //in theory this should not happen
            return new UnknownTestDescriptor();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top