Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 6,499 for happen (0.19 sec)

  1. 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)
  2. 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)
  3. pkg/test/framework/components/echo/util/traffic/generator.go

    		if g.result.TotalRequests == 0 {
    			g.t.Fatal("no requests completed before stopping the traffic generator")
    		}
    		return g.result
    	case <-t.C:
    		g.t.Fatal("timed out waiting for result")
    	}
    	// Can never happen, but the compiler doesn't know that Fatal terminates
    	return Result{}
    }
    
    func fillInDefaults(cfg *Config) {
    	if cfg.Interval == 0 {
    		cfg.Interval = defaultInterval
    	}
    	if cfg.StopTimeout == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

      - type: input
        id: Gpu
        attributes:
          label: GPU model and memory
          description: If compiling from source
      - type: textarea
        id: what-happened
        attributes:
          label: Current behavior?
          description: Also tell us, what did you expect to happen?
          placeholder: Tell us what you see!
        validations:
          required: true
      - type: textarea
        id: code-to-reproduce
        attributes:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 28 18:25:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. pkg/controller/deployment/recreate.go

    				// Don't count pods in terminal state.
    				continue
    			case v1.PodUnknown:
    				// v1.PodUnknown is a deprecated status.
    				// This logic is kept for backward compatibility.
    				// This used to happen in situation like when the node is temporarily disconnected from the cluster.
    				// If we can't be sure that the pod is not running, we have to count it.
    				return true
    			default:
    				// Pod is not in terminal phase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// removing duplicate `/`s, and resolving `..` and `.`.
      ///
      /// Plugins must not return `nullptr`. Returning empty strings is allowed.
      ///
      /// The allocation and freeing of memory must happen via the functions sent to
      /// core TensorFlow upon registration (see the `TF_FilesystemPluginInfo`
      /// structure in Section 4).
      ///
      /// This function will be called by core TensorFlow to clean up all path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top