Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for switches$ (0.17 sec)

  1. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Tell gcc not to include flags in object files, which defeats the
    	// point of -fdebug-prefix-map above.
    	if b.gccSupportsFlag(compiler, "-gno-record-gcc-switches") {
    		a = append(a, "-gno-record-gcc-switches")
    	}
    
    	// On OS X, some of the compilers behave as if -fno-common
    	// is always set, and the Mach-O linker in 6l/8l assumes this.
    	// See https://golang.org/issue/3253.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    inside the "switch" to determine which branch
    to execute.
    </p>
    
    <pre class="ebnf">
    SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
    </pre>
    
    <p>
    There are two forms: expression switches and type switches.
    In an expression switch, the cases contain expressions that are compared
    against the value of the switch expression.
    In a type switch, the cases contain types that are compared against the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.",
                "type": "boolean"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    //
    // The caller must hold worldsema and either must ensure that a GC is not
    // running (otherwise this may deadlock with the GC trying to preempt this P)
    // or it must leave its goroutine in a preemptible state before it switches
    // to the systemstack. Due to these restrictions, prefer forEachP when possible.
    //
    //go:systemstack
    func forEachPInternal(fn func(*p)) {
    	mp := acquirem()
    	pp := getg().m.p.ptr()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    				}),
    				// observe cluster-scoped parent
    				processEvent(makeAddEvent(node1)),
    				assertState(state{
    					graphNodes:             []*node{makeNode(pod1ns1, withOwners(node1)), makeNode(node1)}, // node1 switched to observed, fixed namespace coordinate
    					pendingAttemptToDelete: []*node{makeNode(node1WithNamespace, virtual)},                 // virtual node1 queued for attempted delete
    				}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    B(o)&&D(o)&&o.match(/^-?\d/)?r+wi(o):si(!0===o?n.parentNode:xt(o,n)).bottom}var xr={mixins:[un],args:"connect",props:{connect:String,toggle:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",active:0,swiping:!0,cls:"uk-active",clsContainer:"uk-switcher",attrItem:"uk-switcher-item",queued:!0},computed:{connects:{get:function(t,e){return yt(t.connect,e)},watch:function(t){var e=this;t.forEach(function(t){return e.updateAria(t.children)}),this.swiping&&Ve(t,"touch-action","pan-y...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return ComputeInputComponentFor(gather_op, port);
      }
      return {};
    }
    
    // TODO(jpienaar): ComputeInputsRequiredForOutput and ComputeOutputComponent are
    // intended to be switched to op interfaces once more refined.
    LogicalResult ComputeInputsRequiredForOutput(ValuePort value_port,
                                                 ComputedQueryFn has_been_computed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		<-conn.closec
    	}
    }
    
    // Tests that we can use CloseNotifier in one request, and later call Hijack
    // on a second request on the same connection.
    //
    // It also tests that the connReader stitches together its background
    // 1-byte read for CloseNotifier when CloseNotifier doesn't fire with
    // the rest of the second HTTP later.
    //
    // Issue 9763.
    // HTTP/1-only test. (http2 doesn't have Hijack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top