Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for look (0.1 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			// Look for a cache hit.
    			//   if e.Typ == t { goto hit }
    			eTyp := s.newValue2(ssa.OpLoad, typs.Uintptr, e, s.mem())
    			cmp1 := s.newValue2(ssa.OpEqPtr, typs.Bool, t, eTyp)
    			b = s.endBlock()
    			b.Kind = ssa.BlockIf
    			b.SetControl(cmp1)
    			b.AddEdgeTo(cacheHit)
    			b.AddEdgeTo(loopBody)
    
    			// Look for an empty entry, the tombstone for this hash table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		}
    		if err := fr.ForeachSetting(sc.processSetting); err != nil {
    			sc.rejectConn(http2ErrCodeProtocol, "invalid settings")
    			return
    		}
    		opts.Settings = nil
    	}
    
    	if hook := http2testHookGetServerConn; hook != nil {
    		hook(sc)
    	}
    
    	if opts.UpgradeRequest != nil {
    		sc.upgradeRequest(opts.UpgradeRequest)
    		opts.UpgradeRequest = nil
    	}
    
    	sc.serve()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Updated an audit annotation key used by the `…/serviceaccounts/<name>/token`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                    description: 'IptablesLockFilePath is the location of the iptables
                      lock file. You may need to change this if the lock file is not in
                      its standard location (for example if you have mapped it into Felix''s
                      container at a different path). [Default: /run/xtables.lock]'
                    type: string
                  iptablesLockProbeInterval:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

    etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecyc...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Removed withdrawn feature `NetworkPolicyStatus`. ([#115843](https://github.com/kubernetes/kubernetes/pull/115843), [@rikatz](https://github.com/rikatz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  7. pkg/registry/core/service/storage/storage_test.go

    			expectHeadless: true,
    			prove:          prove(proveITP(api.ServiceInternalTrafficPolicyLocal)),
    		},
    	}}
    
    	helpTestCreateUpdateDelete(t, testCases)
    }
    
    // TODO(thockin): We need to look at feature-tests for:
    //   externalIPs, lbip, lbsourceranges, externalname, PublishNotReadyAddresses, AllocateLoadBalancerNodePorts, LoadBalancerClass, status
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. doc/go_spec.html

    of an interface type or of elements of a composite type remains unchanged:
    </p>
    
    <pre>
    // A Mutex is a data type with two methods, Lock and Unlock.
    type Mutex struct         { /* Mutex fields */ }
    func (m *Mutex) Lock()    { /* Lock implementation */ }
    func (m *Mutex) Unlock()  { /* Unlock implementation */ }
    
    // NewMutex has the same composition as Mutex but its method set is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      int value_count = init_values.size() + 1;
    
      // Prepend a loop induction variable to the initial values.
      SmallVector<Value, 2> init_values_with_loop_iv;
      SmallVector<Type, 2> init_types_with_loop_iv;
      init_values_with_loop_iv.reserve(value_count);
      init_types_with_loop_iv.reserve(value_count);
    
      // The initial value for the loop induction variable is 0.
      init_values_with_loop_iv.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-61789`](https://youtrack.jetbrains.com/issue/KT-61789) K2: optimize getFirForNonKtFileElement for references inside super type reference
    - [`KT-59498`](https://youtrack.jetbrains.com/issue/KT-59498) K2: getOnAirGetTowerContextProvider took too much time due to on air resolve
    - [`KT-61728`](https://youtrack.jetbrains.com/issue/KT-61728) Analysis API: optimize AllCandidatesResolver.getAllCandidates
    
    #### Fixes
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top