Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 487 for representing (0.2 sec)

  1. android/guava/src/com/google/common/math/LinearTransformation.java

        }
      }
    
      /**
       * Builds an instance representing a vertical transformation with a constant value of {@code x}.
       * (The inverse of this will be a horizontal transformation.)
       */
      public static LinearTransformation vertical(double x) {
        checkArgument(isFinite(x));
        return new VerticalLinearTransformation(x);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  3. pkg/proxy/util/nfacct/handler.go

    	"golang.org/x/sys/unix"
    )
    
    // handler is an injectable interface for creating netlink request.
    type handler interface {
    	newRequest(cmd int, flags uint16) request
    }
    
    // request is an injectable interface representing a netlink request.
    type request interface {
    	Serialize() []byte
    	AddData(data nl.NetlinkRequestData)
    	AddRawData(data []byte)
    	Execute(sockType int, resType uint16) ([][]byte, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    // Convert a model represented in `input_contents`. `model_flags_proto`
    // describes model parameters. `flags_proto` describes conversion
    // parameters (see relevant .protos for more information). Returns a string
    // representing the contents of the converted model. When extended_return
    // flag is set to true returns a dictionary that contains string representation
    // of the converted model and some statistics like arithmetic ops count.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/DirectedGraphConnections.java

        }
      }
    
      private static final Object PRED = new Object();
    
      // Every value in this map must either be an instance of PredAndSucc with a successorValue of
      // type V, PRED (representing predecessor), or an instance of type V (representing successor).
      private final Map<N, Object> adjacentNodeValues;
    
      /**
       * All node connections in this graph, in edge insertion order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestSuite.java

    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    
    import javax.inject.Inject;
    
    /**
     * Abstract software component representing an XCTest suite.
     */
    public class DefaultSwiftXCTestSuite extends DefaultSwiftComponent<SwiftXCTestBinary> implements SwiftXCTestSuite {
        private final ObjectFactory objectFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    /**
     * Constructs an SmbFile representing a resource on an SMB network such
     * as a file or directory from a <tt>URL</tt> object.
     *
     * @param   url The URL of the target resource
     */
        public SmbFile( URL url ) {
            this( url, new NtlmPasswordAuthentication( url.getUserInfo() ));
        }
    /**
     * Constructs an SmbFile representing a resource on an SMB network such
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ClassLoaderStructureProvider.java

            return new HierarchicalClassLoaderStructure(gradleApiFilter)
                    .withChild(userSpec);
        }
    
        /**
         * Returns a spec representing the combined "user" classloader for the given classes and additional classpath.  The user classloader assumes it is used as a child of a classloader with the Gradle API.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRoles.java

     */
    
    package org.gradle.api.internal.artifacts.configurations;
    
    import com.google.common.collect.ImmutableSet;
    
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Defines {@link ConfigurationRole}s representing common allowed usage patterns.
     *
     * These should be preferred over defining custom roles; whenever possible.  Use {@link #byUsage(boolean, boolean, boolean)}
     * to attempt to locate a matching role by its usage characteristics.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PredicatesFile.java

         * <p>
         * The csv is sudo in the sense, that you can comment by using "#"
         *
         * @param resource the resource file being used
         * @return a set of sets of strings representing the values in the file
         */
        public static Set<Set<String>> readAllowedCombinations(String resource) {
            try (BufferedReader reader = new BufferedReader(
                new InputStreamReader(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top