Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for logic (0.1 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    ### `-tf-parallel-execute-to-islands`
    
    _Lowers device parallel_execute to executor islands_
    
    
    #### Options
    ```
    -legacy-graph-export : Determines whether or not this pass should execute logic that is reserved for the legacy graph export pipeline to maintain expected invariants. In the case of this pass, that means manually propagating controls to lifted parallel execute regions to the graph fetch to ensure the ops execute.
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		Use: componentKubelet,
    		Long: `The kubelet is the primary "node agent" that runs on each
    node. It can register the node with the apiserver using one of: the hostname; a flag to
    override the hostname; or specific logic for a cloud provider.
    
    The kubelet works in terms of a PodSpec. A PodSpec is a YAML or JSON object
    that describes a pod. The kubelet takes a set of PodSpecs that are provided through
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    				},
    			},
    		},
    	}
    
    	return p
    }
    
    func expectActions(t *testing.T, actions []k8stesting.Action, num int, verb, resource string) {
    	t.Helper()
    	// if actions are less the below logic will panic
    	if num > len(actions) {
    		t.Fatalf("len of actions %v is unexpected. Expected to be at least %v", len(actions), num+1)
    	}
    
    	for i := 0; i < num; i++ {
    		relativePos := len(actions) - i - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    	// To help developers avoid trybot-only failures, we try to run on typical developer machines
    	// which is darwin,linux,windows/amd64 and darwin/arm64.
    	//
    	// The same logic applies to the release notes that correspond to each api/next file.
    	if goos == "darwin" || ((goos == "linux" || goos == "windows") && goarch == "amd64") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      }
    
      /**
       * We had a bug where we'd perform infinite retries of route that fail with connection shutdown
       * errors. The problem was that the logic that decided whether to reuse a route didn't track
       * certain HTTP/2 errors. https://github.com/square/okhttp/issues/5547
       */
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    // If it isn't already marked, mark it and enqueue into gcw.
    // base and off are for debugging only and could be removed.
    //
    // See also wbBufFlush1, which partially duplicates this logic.
    //
    //go:nowritebarrierrec
    func greyobject(obj, base, off uintptr, span *mspan, gcw *gcWork, objIndex uintptr) {
    	// obj should be start of allocation, and so must be at least pointer-aligned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    		t.SetHasShape(true)
    	}
    	if sym.Pkg.Path == "runtime/internal/sys" && sym.Name == "nih" {
    		// Recognize the special not-in-heap type. Any type including
    		// this type will also be not-in-heap.
    		// This logic is duplicated in go/types and
    		// cmd/compile/internal/types2.
    		t.SetNotInHeap(true)
    	}
    	return t
    }
    
    // Obj returns the canonical type name node for a named type t, nil for an unnamed type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    }
    
    func (l *localServiceDiscovery) GetIstioServiceAccounts(*Service) []string {
    	return nil
    }
    
    func (l *localServiceDiscovery) NetworkGateways() []NetworkGateway {
    	// TODO implement fromRegistry logic from kube controller if needed
    	return nil
    }
    
    func (l *localServiceDiscovery) MCSServices() []MCSServiceInfo {
    	return nil
    }
    
    func TestResolveServiceAliases(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	nfAcctCounters map[string]bool
    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    // NewProxier returns a new Proxier given an iptables Interface instance.
    // Because of the iptables logic, it is assumed that there is only a single Proxier active on a machine.
    // An error will be returned if iptables fails to update or acquire the initial lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //     metadata:
      //       labels:
      //         hello: world
    
      // defaultTemplates: ["sidecar", "hello"]
      repeated string defaultTemplates = 24;
    
      // If enabled, the legacy webhook selection logic will be used. This relies on filtering of webhook
      // requests in Istiod, rather than at the webhook selection level.
      // This is option is intended for migration purposes only and will be removed in Istio 1.10.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top