Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 153 for _encapsulate (0.27 sec)

  1. test/chan/powser1.go

    	}
    	y := get(U)
    	if end(y) != 0 {
    		return zero
    	}
    	return add(y, mul(c, eval(c, U, n-1)))
    }
    
    // Power-series constructors return channels on which power
    // series flow.  They start an encapsulated generator that
    // puts the terms of the series on the channel.
    
    // Make a pair of power series identical to a given power series
    
    func Split(U PS) *dch2 {
    	UU := mkdch2()
    	go split(U, UU)
    	return UU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                    description: The ordered set of egress rules.  Each rule contains
                      a set of packet match criteria and a corresponding action to apply.
                    items:
                      description: "A Rule encapsulates a set of match criteria and an
                        action.  Both selector-based security Policy and security Profiles
                        reference rules - separated out as a list of rules for both ingress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  3. src/runtime/mpallocbits.go

    		k *= 2
    	}
    	// Find first remaining 1.
    	// Since we shrunk from the top down, the first 1 is in
    	// its correct original position.
    	return uint(sys.TrailingZeros64(c))
    }
    
    // pallocData encapsulates pallocBits and a bitmap for
    // whether or not a given page is scavenged in a single
    // structure. It's effectively a pallocBits with
    // additional functionality.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Set;
    import java.util.function.Consumer;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    /**
     * Encapsulates all logic required to extract data from a {@link SoftwareComponentInternal} in order to
     * transform it to a representation compatible with Maven.
     */
    public class MavenComponentParser {
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	shortPrefix = "yaml: unmarshal errors:\n"
    	// longPrefix is the other possible beginning of yaml unmarshal strict errors.
    	longPrefix = "error converting YAML to JSON: yaml: unmarshal errors:\n"
    )
    
    // RequestScope encapsulates common fields across all RESTful handler methods.
    type RequestScope struct {
    	Namer ScopeNamer
    
    	Serializer runtime.NegotiatedSerializer
    	runtime.ParameterCodec
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome));
            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_client.go

    	NodeSupportsVolumeMountGroup(ctx context.Context) (bool, error)
    }
    
    // Strongly typed address
    type csiAddr string
    
    // Strongly typed driver name
    type csiDriverName string
    
    // csiClient encapsulates all csi-plugin methods
    type csiDriverClient struct {
    	driverName          csiDriverName
    	addr                csiAddr
    	metricsManager      *MetricsManager
    	nodeV1ClientCreator nodeV1ClientCreator
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

    import org.gradle.internal.DisplayName;
    
    import javax.annotation.Nullable;
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    /**
     * Encapsulates the production of some value by some producer.
     * <p>
     * All providers implement this interface, but this interface may be implemented whenever
     * lazy evaluation is required.
     * </p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api.h

    // Destroy an options object.
    TF_CAPI_EXPORT extern void TFE_DeleteContextOptions(TFE_ContextOptions*);
    
    // "Context" under which operations/functions are executed. It encapsulates
    // things like the available devices, resource manager etc.
    // TFE_Context must outlive all tensor handles created using it. In other
    // words, TFE_DeleteContext() must be called after all tensor handles have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              suite.addTest(new GeneratedMonitorTest(method, scenario, fair, null, expectedOutcome));
            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top