Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for Pledge (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    //sys	munmap(addr uintptr, length uintptr) (err error)
    //sys	getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error)
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)
    //sys	pledge(promises *byte, execpromises *byte) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    	return
    }
    
    func (e *Environment) ClusterLocal() ClusterLocalProvider {
    	return e.clusterLocalServices
    }
    
    func (e *Environment) GetLedger() ledger.Ledger {
    	return e.ledger
    }
    
    func (e *Environment) SetLedger(l ledger.Ledger) {
    	e.ledger = l
    }
    
    func (e *Environment) GetProxyConfigOrDefault(ns string, labels, annotations map[string]string, meshConfig *meshconfig.MeshConfig) *meshconfig.ProxyConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  3. guava/src/com/google/common/graph/Network.java

      /**
       * Returns the nodes which are the endpoints of {@code edge} in this network.
       *
       * @throws IllegalArgumentException if {@code edge} is not an element of this network
       */
      EndpointPair<N> incidentNodes(E edge);
    
      /**
       * Returns a live view of the edges which have an {@link #incidentNodes(Object) incident node} in
       * common with {@code edge}. An edge is not considered adjacent to itself.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/DirectedGraphConnections.java

            while (resultWithDoubleSelfLoop.hasNext()) {
              EndpointPair<N> edge = resultWithDoubleSelfLoop.next();
              if (edge.nodeU().equals(edge.nodeV())) {
                if (!alreadySeenSelfLoop.getAndSet(true)) {
                  return edge;
                }
              } else {
                return edge;
              }
            }
            return endOfData();
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

            while (resultWithDoubleSelfLoop.hasNext()) {
              EndpointPair<N> edge = resultWithDoubleSelfLoop.next();
              if (edge.nodeU().equals(edge.nodeV())) {
                if (!alreadySeenSelfLoop.getAndSet(true)) {
                  return edge;
                }
              } else {
                return edge;
              }
            }
            return endOfData();
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. pilot/pkg/status/distribution/reporter.go

    	dataField = "distribution-report"
    )
    
    // Init starts all the read only features of the reporter, used for nonce generation
    // and responding to istioctl wait.
    func (r *Reporter) Init(ledger ledger.Ledger, stop <-chan struct{}) {
    	r.ledger = ledger
    	if r.clock == nil {
    		r.clock = clock.RealClock{}
    	}
    	r.distributionEventQueue = make(chan distributionEvent, 100_000)
    	r.status = make(map[string]string)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/scalaPluginTasks.graphml

      <key attr.name="description" attr.type="string" for="node" id="d5"/>
      <key for="node" id="d6" yfiles.type="nodegraphics"/>
      <key attr.name="url" attr.type="string" for="edge" id="d7"/>
      <key attr.name="description" attr.type="string" for="edge" id="d8"/>
      <key for="edge" id="d9" yfiles.type="edgegraphics"/>
      <graph edgedefault="directed" id="G">
        <node id="n0">
          <data key="d6">
            <y:ShapeNode>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/javaPluginTasks.graphml

      <key attr.name="description" attr.type="string" for="node" id="d5"/>
      <key for="node" id="d6" yfiles.type="nodegraphics"/>
      <key attr.name="url" attr.type="string" for="edge" id="d7"/>
      <key attr.name="description" attr.type="string" for="edge" id="d8"/>
      <key for="edge" id="d9" yfiles.type="edgegraphics"/>
      <graph edgedefault="directed" id="G">
        <node id="n0">
          <data key="d6">
            <y:ShapeNode>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

    }
    
    // Returns the data type of the destination of an edge.
    DataType EdgeType(const Edge* edge) {
      return edge->dst()->input_type(edge->dst_input());
    }
    
    // Adds the control inputs of `node` to `*deps`.
    void AddControlInputs(const Node& node, absl::flat_hash_set<Node*>* deps) {
      for (const Edge* edge : node.in_edges()) {
        if (edge->IsControlEdge()) {
          deps->insert(edge->src());
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/groovyPluginTasks.graphml

      <key attr.name="description" attr.type="string" for="node" id="d5"/>
      <key for="node" id="d6" yfiles.type="nodegraphics"/>
      <key attr.name="url" attr.type="string" for="edge" id="d7"/>
      <key attr.name="description" attr.type="string" for="edge" id="d8"/>
      <key for="edge" id="d9" yfiles.type="edgegraphics"/>
      <graph edgedefault="directed" id="G">
        <node id="n0">
          <data key="d6">
            <y:ShapeNode>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top