Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 521 for RES (0.03 sec)

  1. internal/config/identity/openid/openid.go

    			} else {
    				kvsrc.Value = "off"
    			}
    		}
    		res = append(res, madmin.IDPCfgInfo{
    			Key:   kvsrc.Key,
    			Value: kvsrc.Value,
    			IsCfg: true,
    			IsEnv: kvsrc.Src == config.ValueSourceEnv,
    		})
    	}
    
    	if provCfg, exists := r.ProviderCfgs[cfgName]; exists && provCfg.RolePolicy != "" {
    		// Append roleARN
    		res = append(res, madmin.IDPCfgInfo{
    			Key:   "roleARN",
    			Value: provCfg.roleArn.String(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. cmd/metacache-stream.go

    				return res, io.ErrUnexpectedEOF
    			}
    			return res, err
    		}
    
    		var err error
    		var name string
    		if name, err = r.mr.ReadString(); err != nil {
    			r.err = err
    			return res, err
    		}
    		if err = r.mr.Skip(); err != nil {
    			if err == io.EOF {
    				err = io.ErrUnexpectedEOF
    			}
    			r.err = err
    			return res, err
    		}
    		res = append(res, name)
    	}
    	return res, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            ArtifactResolutionResult res = collect(createSet(new Object[] {a.artifact, b.artifact}));
            assertEquals(createSet(new Object[] {a.artifact, b.artifact}), res.getArtifacts(), "Check artifact list");
            assertEquals("3.8.1", getArtifact("junit", res.getArtifacts()).getVersion(), "Check version");
            assertEquals(
                    Artifact.SCOPE_TEST, getArtifact("junit", res.getArtifacts()).getScope(), "Check artifactScope");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  4. docs/iam/access-manager-plugin.go

    	var res Result
    	if accountValue == "minio" {
    		res.Result = true
    	} else {
    		// All other users may not perform any `s3:Put*` operations.
    		res.Result = true
    		if strings.HasPrefix(actionValue, "s3:Put") {
    			res.Result = false
    		}
    	}
    	fmt.Printf("account: %v | action: %v | allowed: %v\n", accountValue, actionValue, res.Result)
    	json.NewEncoder(w).Encode(res)
    	return
    }
    
    func main() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 08 17:15:20 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_simple.td

      [(IsNotInLiftedFunc $res), (IsStableHLOConstantOp $operand)], [], (addBenefit 1)>;
    
    def LiftAdd : Pat<
      (StableHLO_AddOp:$res
          $lhs, $rhs),
      (LiftAsTFXlaCallModule<"composite_add_fn">
        (ArgumentList $lhs, $rhs),
        (ResultList $res)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/productpage.py

            res = send_request(url, headers=headers, timeout=3.0)
        except BaseException:
            res = None
        if res and res.status_code == 200:
            request_result_counter.labels(destination_app='details', response_code=200).inc()
            return 200, res.json()
        else:
            status = res.status_code if res is not None and res.status_code else 500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    func find(src, s string, n int) []int {
    	var res []int
    	if s != "" && n != 0 {
    		// find at most n occurrences of s in src
    		for i := -1; n < 0 || len(res) < n; {
    			j := strings.Index(src[i+1:], s)
    			if j < 0 {
    				break
    			}
    			i += j + 1
    			res = append(res, i)
    		}
    	}
    	return res
    }
    
    func testLookup(t *testing.T, tc *testCase, x *Index, s string, n int) {
    	res := x.Lookup([]byte(s), n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    					continue
    				}
    				if _, f := res[fromKey]; !f {
    					res[fromKey] = map[Reference]*Grants{}
    				}
    				if _, f := res[fromKey][toKey]; !f {
    					res[fromKey][toKey] = &Grants{
    						AllowedNames: sets.New[string](),
    					}
    				}
    				if to.Name != nil {
    					res[fromKey][toKey].AllowedNames.Insert(string(*to.Name))
    				} else {
    					res[fromKey][toKey].AllowAll = true
    				}
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    		res = append(res, nestedValueValidationToStructural(&subSchema))
    	}
    	return res
    }
    
    func (s *Structural) OneOf() []common.Schema {
    	var res []common.Schema
    	for _, subSchema := range s.Structural.ValueValidation.OneOf {
    		subSchema := subSchema
    		res = append(res, nestedValueValidationToStructural(&subSchema))
    	}
    	return res
    }
    
    func (s *Structural) Not() common.Schema {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/context.go

    					Name:      resource.LocalName(cfg.Name),
    					Namespace: resource.Namespace(cfg.Namespace),
    				}, id,
    			}
    			if res, ok := i.found[k]; ok {
    				if !broken && !fn(res) {
    					broken = true
    				}
    				cache[k] = res
    				continue
    			}
    			res, err := cfgToInstance(cfg, col, colschema, id)
    			if err != nil {
    				// TODO: demote this log before merging
    				log.Error(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top