Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 242 for getg (0.08 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * @return This request, never {@code null}.
         */
        MavenExecutionRequest setSystemProperties(Properties systemProperties);
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/common_test.go

    		},
    		{
    			name: "InitConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: InitConfiguration
    			`, gv)),
    			expectedKinds: []string{
    				constants.InitConfigurationKind,
    				constants.ClusterConfigurationKind,
    			},
    			expectErr: false,
    		},
    		{
    			name: "ClusterConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val INT: KaType
            get() = int
    
        public abstract val long: KaType
    
        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
        @Deprecated("Use 'short' instead.", replaceWith = ReplaceWith("short"))
        public val SHORT: KaType
            get() = short
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/config/mesh/mesh.go

    	}
    	return &out, nil
    }
    
    // ReadMeshNetworks gets mesh networks configuration from a config file
    func ReadMeshNetworks(filename string) (*meshconfig.MeshNetworks, error) {
    	yaml, err := os.ReadFile(filename)
    	if err != nil {
    		return nil, multierror.Prefix(err, "cannot read networks config file")
    	}
    	return ParseMeshNetworks(string(yaml))
    }
    
    // ReadMeshConfig gets mesh configuration from a config file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            Language.GROOVY | JavaLanguageVersion.of(11) | true
            Language.CPP    | null                       | false
            Language.SWIFT  | null                       | false
        }
    
        def "gets java-version from property"() {
            given:
            def userQuestions = Mock(UserQuestions)
            def buildInitializer = Mock(BuildInitializer)
            buildInitializer.supportsJavaTargets() >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

      for (Type type : dataset_types) {
        shape_attrs.push_back(
            TF::ShapeAttr::get(builder.getContext(), mlir::cast<ShapedType>(type)));
        type_attrs.push_back(TypeAttr::get(getElementTypeOrSelf(type)));
      }
    
      auto anonymous_iterator = builder.create<AnonymousIteratorV3Op>(
          reduce_dataset.getLoc(),
          RankedTensorType::get({}, builder.getType<ResourceType>()),
          /*output_types=*/builder.getArrayAttr(type_attrs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/wait.go

    			for _, pod := range pods.Items {
    				if pod.Status.Phase != v1.PodRunning {
    					return false, nil
    				}
    			}
    
    			return true, nil
    		})
    }
    
    // WaitForPodToDisappear blocks until it timeouts or gets a "NotFound" response from the API Server when getting the Static Pod in question
    func (w *KubeWaiter) WaitForPodToDisappear(podName string) error {
    	return wait.PollUntilContextTimeout(context.Background(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. internal/kms/kms.go

    // and options for creating keys.
    type CreateKeyRequest struct {
    	// Name is the name of the key that gets created.
    	Name string
    }
    
    // DeleteKeyRequest is a structure containing fields
    // and options for deleting keys.
    type DeleteKeyRequest struct {
    	// Name is the name of the key that gets deleted.
    	Name string
    }
    
    // GenerateKeyRequest is a structure containing fields
    // and options for generating data keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. pkg/apis/resource/types.go

    	// +optional
    	AllocationMode AllocationMode
    }
    
    // AllocationMode describes whether a ResourceClaim gets allocated immediately
    // when it gets created (AllocationModeImmediate) or whether allocation is
    // delayed until it is needed for a Pod
    // (AllocationModeWaitForFirstConsumer). Other modes might get added in the
    // future.
    type AllocationMode string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

        auto& arg = packed_args.emplace_back();
        arg.ssaName = std::get<0>(argAndType);
        arg.type = std::get<1>(argAndType);
      }
      if (parser.parseRegion(body, packed_args)) return failure();
    
      // Add derived `operandSegmentSizes` attribute based on parsed operands.
      if (!result.attributes.get(kOperandSegmentSizesAttr)) {
        int32_t num_replicated_inputs = replicated_inputs.size() * n;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top