Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for inputs_ (0.18 sec)

  1. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CurrentPolicies - returns comma separated policy string, from
    // an input policy after validating if there are any current
    // policies which exist on MinIO corresponding to the input.
    func (sys *IAMSys) CurrentPolicies(policyName string) string {
    	if !sys.Initialized() {
    		return ""
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_s390x.s

     *
     *                                                                *Mi obra de arte de siglo XXI @vpaprots
     *
     *
     * First group is special, doesn't get the two inputs:
     *                                             +--------+--------+<-+
     *                                     +-------|  ADD2  |  ADD1  |--|-----+
     *                                     |       +--------+--------+  |     |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults_test.go

    						}},
    					},
    				},
    			},
    		}
    		template := rc.Spec.Template
    		defaults := detectDefaults(t, rc, reflect.ValueOf(template))
    		expected := func() map[string]string {
    			// Set values that are known inputs
    			m := map[string]string{
    				".Spec.HostNetwork":                          "true",
    				".Spec.Containers[0].Ports[0].ContainerPort": "12345",
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users.go

    	if objectAPI == nil {
    		return
    	}
    
    	vars := mux.Vars(r)
    	policyName := vars["name"]
    
    	// Policy has space characters in begin and end reject such inputs.
    	if hasSpaceBE(policyName) {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    		return
    	}
    
    	// Error out if Content-Length is missing.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // cluster these nodes. This prevents other work on this device from being
      // delayed by work on other devices. We consider predecessors of the entire
      // cluster rather than just the inputs to the node to prevent the cluster
      // still being combined in cases where the 'to' cluster has multiple
      // dependencies on the 'from' cluster and another dependency leads to a
      // merging of the clusters.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		ldr:      ctxt.loader,
    		arch:     ctxt.Arch,
    		dwmu:     new(sync.Mutex),
    	}
    	d.dwarfGenerateDebugSyms()
    }
    
    // dwUnitSyms stores input and output symbols for DWARF generation
    // for a given compilation unit.
    type dwUnitSyms struct {
    	// Inputs for a given unit.
    	lineProlog  loader.Sym
    	rangeProlog loader.Sym
    	infoEpilog  loader.Sym
    
    	// Outputs for a given unit.
    	linesyms   []loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    // convertResources is the top level entrypoint to our conversion logic, computing the full state based
    // on KubernetesResources inputs.
    func convertResources(r GatewayResources) IstioResources {
    	// sort HTTPRoutes by creation timestamp and namespace/name
    	sortConfigByCreationTime(r.HTTPRoute)
    	sortConfigByCreationTime(r.GRPCRoute)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // opensslInputEvent enumerates possible inputs that can be sent to an `openssl
    // s_client` process.
    type opensslInputEvent int
    
    const (
    	// opensslRenegotiate causes OpenSSL to request a renegotiation of the
    	// connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    					continue
    				}
    
    				vchange := phielimValue(v)
    				if vchange && debug > 1 {
    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// Eliminate copy inputs.
    				// If any copy input becomes unused, mark it
    				// as invalid and discard its argument. Repeat
    				// recursively on the discarded argument.
    				// This phase helps remove phantom "dead copy" uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    		return RawFileInfo{}, err
    	}
    
    	buf, _, err := s.readRaw(ctx, volume, volumeDir, filePath, readData)
    	return RawFileInfo{
    		Buf: buf,
    	}, err
    }
    
    // ReadOptions optional inputs for ReadVersion
    type ReadOptions struct {
    	ReadData bool
    	Healing  bool
    }
    
    // ReadVersion - reads metadata and returns FileInfo at path `xl.meta`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
Back to top