Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,543 for constructs (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/cr/v1/example.go

    }
    
    type exampleInformer struct {
    	factory          internalinterfaces.SharedInformerFactory
    	tweakListOptions internalinterfaces.TweakListOptionsFunc
    	namespace        string
    }
    
    // NewExampleInformer constructs a new informer for Example type.
    // Always prefer using an informer factory to get a shared informer instead of getting an independent
    // one. This reduces memory footprint and number of connections to the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

          checkNotNull(function);
        }
        this.functions = functions;
      }
    
      /**
       * Constructs a {@code HashCode} from the {@code Hasher} objects of the functions. Each of them
       * has consumed the entire input and they are ready to output a {@code HashCode}. The order of the
       * hashers are the same order as the functions given to the constructor.
       */
      // this could be cleaner if it passed HashCode[], but that would create yet another array...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/object.h

    };
    
    /// @brief The Float class for holding TaggedValues of type FLOAT.
    class Float final : public Handle {
     public:
      /// Constructs a Float handle that wraps a FLOAT TaggedValue.
      explicit Float(Handle h) : Handle(h.value_) {}
      /// Constructs a Float handle that wraps a FLOAT TaggedValue.
      explicit Float(float i) : Handle(TaggedValue(i)) {}
      /// Retrieves the underlying float value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

          checkNotNull(function);
        }
        this.functions = functions;
      }
    
      /**
       * Constructs a {@code HashCode} from the {@code Hasher} objects of the functions. Each of them
       * has consumed the entire input and they are ready to output a {@code HashCode}. The order of the
       * hashers are the same order as the functions given to the constructor.
       */
      // this could be cleaner if it passed HashCode[], but that would create yet another array...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    	if declType == nil {
    		return nil, fmt.Errorf("unable to convert structural schema to CEL declarations")
    	}
    	return &CELTypeInfo{structural, declType}, nil
    }
    
    // RootCELContext constructs CELSchemaContext for the given root schema.
    func RootCELContext(schema *apiextensions.JSONSchemaProps) *CELSchemaContext {
    	rootCardinality := uint64(1)
    	r := &CELSchemaContext{
    		jsonSchema:                schema,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/HashMultimap.java

        return new HashMultimap<>(expectedKeys, expectedValuesPerKey);
      }
    
      /**
       * Constructs a {@code HashMultimap} with the same mappings as the specified multimap. If a
       * key-value mapping appears multiple times in the input multimap, it only appears once in the
       * constructed multimap.
       *
       * <p>This method will soon be deprecated in favor of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

            FileSystem fileSystem
        ) {
            BasicFileAttributes attrs = getAttributes(path);
            return getRootFileVisitDetails(path, relativePath, attrs, stopFlag, fileSystem);
        }
    
        /**
         * Constructs proper RelativePath based on attributes and returns FileVisitDetails for the given relativePath.
         *
         * @param path Path of the file
         * @param parentPath RelativePath of the parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/telemetry/telemetry.go

    	prefix = strings.ReplaceAll(prefix, servicePortStatPattern, strconv.Itoa(int(port)))
    	prefix = strings.ReplaceAll(prefix, servicePortNameStatPattern, portName)
    	return prefix
    }
    
    // shortHostName constructs the name from kubernetes hosts based on attributes (name and namespace).
    // For other hosts like VMs, this method does not do any thing - just returns the passed in host as is.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen.h

      std::vector<string> header_variable_decls;
    
      // program_shape_access_shim is a C++ expression that constructs the
      // xla::ProgramShapeProto instance for the CompileResult passed to
      // GenerateMetadata.
      string program_shape_access_shim;
    
      // hlo_profile_printer_data_access_shim is a C++ expression that constructs
      // the xla::HloProfilePrinterData instance for the CompileResult passed to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 01 22:03:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pilot/pkg/security/model/authentication.go

    	// entire listener/cluster in these cases.
    	ResourceApiVersion: core.ApiVersion_V3,
    }
    
    // ConstructSdsSecretConfigForCredential constructs SDS secret configuration used
    // from certificates referenced by credentialName in DestinationRule or Gateway.
    // Currently this is served by a local SDS server, but in the future replaced by
    // Istiod SDS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top