Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 399 for revalue (0.14 sec)

  1. maven-compat/src/main/mdo/profiles.mdo

                {
                    RepositoryBase other =  (RepositoryBase) obj;
    
                    boolean retValue = false;
    
                    if ( id != null )
                    {
                        retValue = id.equals( other.id );
                    }
    
                    return retValue;
                }
              ]]></code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpec.java

                    if ((arg.equals("--module-path") || arg.equals("-p")) && (i + 1) < compileOptions.getCompilerArgs().size()) {
                        Object argValue = compileOptions.getCompilerArgs().get(++i);
                        String[] modules = argValue.toString().split(File.pathSeparator);
                        modulePaths.addAll(Arrays.asList(modules));
                    } else if (arg.startsWith("--module-path=")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

            - enumValue
            example: exampleValue
            exclusiveMaximum: true
            exclusiveMinimum: true
            externalDocs:
              description: descriptionValue
              url: urlValue
            format: formatValue
            id: idValue
            items:
            - {}
            maxItems: 16
            maxLength: 13
            maxProperties: 21
            maximum: 9.5
            minItems: 17
            minLength: 14
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/metrics/client.go

    			window = time.Duration(*m.WindowSeconds) * time.Second
    		}
    		res[m.DescribedObject.Name] = PodMetric{
    			Timestamp: m.Timestamp.Time,
    			Window:    window,
    			Value:     int64(m.Value.MilliValue()),
    		}
    
    		m.Value.MilliValue()
    	}
    
    	timestamp := metrics.Items[0].Timestamp.Time
    
    	return res, timestamp, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 20:17:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. pkg/kubelet/network/dns/dns_windows.go

    	regKey, err := registry.OpenKey(registry.LOCAL_MACHINE, reg, registry.QUERY_VALUE)
    	if err != nil {
    		return "", err
    	}
    	defer regKey.Close()
    
    	regValue, _, err := regKey.GetStringValue(key)
    	return regValue, err
    }
    
    // getDNSSuffixList reads DNS config file and returns the list of configured DNS suffixes
    func getDNSSuffixList() ([]string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

          enum:
          - enumValue
          example: exampleValue
          exclusiveMaximum: true
          exclusiveMinimum: true
          externalDocs:
            description: descriptionValue
            url: urlValue
          format: formatValue
          id: idValue
          items:
          - {}
          maxItems: 16
          maxLength: 13
          maxProperties: 21
          maximum: 9.5
          minItems: 17
          minLength: 14
          minProperties: 22
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cmd/genyaml/gen_kubectl_yaml.go

    			opt := cmdOption{
    				flag.Name,
    				flag.Shorthand,
    				flag.DefValue,
    				forceMultiLine(flag.Usage),
    			}
    			result = append(result, opt)
    		} else {
    			opt := cmdOption{
    				Name:         flag.Name,
    				DefaultValue: forceMultiLine(flag.DefValue),
    				Usage:        forceMultiLine(flag.Usage),
    			}
    			result = append(result, opt)
    		}
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pkg/kubelet/winstats/perfcounter_nodestats.go

    	regKey, err := registry.OpenKey(registry.LOCAL_MACHINE, bootIdRegistry, registry.READ)
    	if err != nil {
    		return "", err
    	}
    	defer regKey.Close()
    	regValue, _, err := regKey.GetIntegerValue(bootIdKey)
    	if err != nil {
    		return "", err
    	}
    	return strconv.FormatUint(regValue, 10), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/typeconverter.go

    	}
    }
    
    // TypedToObject transforms the typed value into a runtime.Object. That
    // is not specific to deduced type.
    func (deducedTypeConverter) TypedToObject(value *typed.TypedValue) (runtime.Object, error) {
    	return valueToObject(value.AsValue())
    }
    
    func valueToObject(val value.Value) (runtime.Object, error) {
    	vu := val.Unstructured()
    	switch o := vu.(type) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. cmd/genman/gen_kube_man.go

    		if !(len(flag.ShorthandDeprecated) > 0) && len(flag.Shorthand) > 0 {
    			format = "**-%s**, " + format
    			fmt.Fprintf(out, format, flag.Shorthand, flag.Name, flag.DefValue, flag.Usage)
    		} else {
    			fmt.Fprintf(out, format, flag.Name, flag.DefValue, flag.Usage)
    		}
    	})
    }
    
    func printOptions(out *bytes.Buffer, command *cobra.Command) {
    	flags := command.NonInheritedFlags()
    	if flags.HasFlags() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top