Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for squarify (0.34 sec)

  1. pkg/registry/rbac/validation/rule.go

    	case rbacv1.ServiceAccountKind:
    		// default the namespace to namespace we're working in if its available.  This allows rolebindings that reference
    		// SAs in th local namespace to avoid having to qualify them.
    		saNamespace := namespace
    		if len(subject.Namespace) > 0 {
    			saNamespace = subject.Namespace
    		}
    		if len(saNamespace) == 0 {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/fmt.go

    		}
    
    		if s != nil {
    			if isParam {
    				name = fmt.Sprint(f.Nname)
    			} else if verb == 'L' {
    				name = s.Name
    				if !IsExported(name) && mode != fmtTypeIDName {
    					name = sconv(s, 0, mode) // qualify non-exported names (used on structs, not on funarg)
    				}
    			} else {
    				name = sconv(s, 0, mode)
    			}
    		}
    	}
    
    	if name != "" {
    		b.WriteString(name)
    		b.WriteString(nameSep)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    offering. The obligations in this section do not apply to any claims or Losses
    relating to any actual or alleged intellectual property infringement. In order
    to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
    Contributor in writing of such claim, and b) allow the Commercial Contributor
    to control, and cooperate with the Commercial Contributor in, the defense
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  4. src/math/big/ratconv.go

    	var q nat
    	p2 := d.trailingZeroBits()
    	q = q.shr(d, p2)
    
    	// Determine p5 by counting factors of 5.
    	// Build a table starting with an initial power of 5,
    	// and use repeated squaring until the factor doesn't
    	// divide q anymore. Then use the table to determine
    	// the power of 5 in q.
    	const fp = 13        // f == 5^fp
    	var tab []nat        // tab[i] == (5^fp)^(2^i) == 5^(fp·2^i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. cmd/bucket-replication-handlers.go

    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    }
    
    // ResetBucketReplicationStartHandler - starts a replication reset for all objects in a bucket which
    // qualify for replication and re-sync the object(s) to target, provided ExistingObjectReplication is
    // enabled for the qualifying rule. This API is a MinIO only extension provided for situations where
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    in a commercial product offering. The obligations in this section do not
    apply to any claims or Losses relating to any actual or alleged
    intellectual property infringement. In order to qualify, an Indemnified
    Contributor must: a) promptly notify the Commercial Contributor in
    writing of such claim, and b) allow the Commercial Contributor to control,
    and cooperate with the Commercial Contributor in, the defense and any
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                underlying_devices_[component_index], underlying_devices_[0])) {
          // Device names are from different address spaces, or we can't figure out
          // whether they are, so we'll fully-qualify everything.
          return underlying_devices_;
        }
      }
      std::vector<std::string> local_names;
      local_names.reserve(underlying_devices_.size());
      for (const DeviceNameUtils::ParsedName& parsed_component :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object.go

    		typ = nil
    
    	case *Nil:
    		buf.WriteString("nil")
    		return
    
    	default:
    		panic(fmt.Sprintf("writeObject(%T)", obj))
    	}
    
    	buf.WriteByte(' ')
    
    	// For package-level objects, qualify the name.
    	if obj.Pkg() != nil && obj.Pkg().scope.Lookup(obj.Name()) == obj {
    		buf.WriteString(packagePrefix(obj.Pkg(), qf))
    	}
    	buf.WriteString(obj.Name())
    
    	if typ == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. src/go/types/object.go

    		typ = nil
    
    	case *Nil:
    		buf.WriteString("nil")
    		return
    
    	default:
    		panic(fmt.Sprintf("writeObject(%T)", obj))
    	}
    
    	buf.WriteByte(' ')
    
    	// For package-level objects, qualify the name.
    	if obj.Pkg() != nil && obj.Pkg().scope.Lookup(obj.Name()) == obj {
    		buf.WriteString(packagePrefix(obj.Pkg(), qf))
    	}
    	buf.WriteString(obj.Name())
    
    	if typ == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    [[sec:using_task_option_command_line]]
    === Step 2. Use an option on the command line
    
    There are a few rules for options on the command line:
    
    - The option uses a double-dash as a prefix, e.g., `--url`.
    A single dash does not qualify as valid syntax for a task option.
    - The option argument follows directly after the task declaration, e.g., `verifyUrl --url=http://www.google.com/`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top