Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for Capget (0.54 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsScheduledJobCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setTarget_Regexp(String target) {
            setTarget_Regexp(target, null);
        }
    
        public void setTarget_Regexp(String target, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
            RegexpQueryBuilder builder = regRegexpQ("target", target);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 98.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		if !target.IsAIX() && !target.IsDarwin() && !target.IsSolaris() && !target.IsOpenbsd() && rs != 0 && rst == sym.SDYNIMPORT && !target.IsDynlinkingGo() && !ldr.AttrSubSymbol(rs) {
    			if !(target.IsPPC64() && target.IsExternal() && ldr.SymName(rs) == ".TOC.") {
    				st.err.Errorf(s, "unhandled relocation for %s (type %d (%s) rtype %d (%s))", ldr.SymName(rs), rst, rst, rt, sym.RelocName(target.Arch, rt))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. cmd/bucket-replication.go

    			}
    		}
    		// validate replication ARN against target endpoint
    		c := globalBucketTargetSys.GetRemoteTargetClient(bucket, arnStr)
    		if c != nil {
    			if err := checkRemoteEndpoint(ctx, c.EndpointURL()); err != nil {
    				switch err.(type) {
    				case BucketRemoteIdenticalToSource:
    					return true, errorCodes.ToAPIErrWithErr(ErrBucketRemoteIdenticalToSource, fmt.Errorf("remote target endpoint %s is self referential", c.EndpointURL().String()))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    		metrics := &cmapi.MetricValueList{}
    		var matchedTarget *autoscalingv2.MetricSpec
    		for i, target := range tc.metricsTarget {
    			if target.Type == autoscalingv2.ObjectMetricSourceType && name == target.Object.DescribedObject.Name {
    				gk := schema.FromAPIVersionAndKind(target.Object.DescribedObject.APIVersion, target.Object.DescribedObject.Kind).GroupKind()
    				mapping, err := mapper.RESTMapping(gk)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "description": "metric identifies the target metric by name and selector"
              },
              "target": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricTarget"
                  }
                ],
                "default": {},
                "description": "target specifies the target value for the given metric"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	}
    
    	// If we are using the eventual install target as an up-to-date
    	// cached copy of the thing we built, then there's no need to
    	// copy it into itself (and that would probably fail anyway).
    	// In this case a1.built == a.Target because a1.built == p.Target,
    	// so the built target is not in the a1.Objdir tree that b.cleanup(a1) removes.
    	if a1.built == a.Target {
    		a.built = a.Target
    		if !a.buggyInstall {
    			b.cleanup(a1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        def outputDirectory = output.parentFile
                        assert outputDirectory.directory && outputDirectory.list().length == 0
                        if (parameters.target.get() == "size") {
                            output.text = String.valueOf(input.length())
                        } else if (parameters.target.get() == "hash") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		count = 1
    	}
    
    	var target string
    	if len(obj.InvolvedObject.Name) > 0 {
    		target = fmt.Sprintf("%s/%s", strings.ToLower(obj.InvolvedObject.Kind), obj.InvolvedObject.Name)
    	} else {
    		target = strings.ToLower(obj.InvolvedObject.Kind)
    	}
    	if options.Wide {
    		row.Cells = append(row.Cells,
    			lastTimestamp,
    			obj.Type,
    			obj.Reason,
    			target,
    			obj.InvolvedObject.FieldPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta2/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&ContainerResourceMetricSource{`,
    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Target:` + strings.Replace(strings.Replace(this.Target.String(), "MetricTarget", "MetricTarget", 1), `&`, ``, 1) + `,`,
    		`Container:` + fmt.Sprintf("%v", this.Container) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 163K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&ContainerResourceMetricSource{`,
    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Target:` + strings.Replace(strings.Replace(this.Target.String(), "MetricTarget", "MetricTarget", 1), `&`, ``, 1) + `,`,
    		`Container:` + fmt.Sprintf("%v", this.Container) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 162.9K bytes
    - Viewed (0)
Back to top