Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 271 for Appendp (0.12 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

            if (scheme != null) {
              append(scheme)
              append("://")
            } else {
              append("//")
            }
    
            if (encodedUsername.isNotEmpty() || encodedPassword.isNotEmpty()) {
              append(encodedUsername)
              if (encodedPassword.isNotEmpty()) {
                append(':')
                append(encodedPassword)
              }
              append('@')
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		httpStaticHost := func() *config.Config {
    			c := httpStaticOverlayUpdated.DeepCopy()
    			se := c.Spec.(*networking.ServiceEntry)
    			se.Hosts = append(se.Hosts, "other.com")
    			return &c
    		}()
    		createConfigs([]*config.Config{httpStaticHost}, store, t)
    		instances := append(baseInstances,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    				if !queued[dep] {
    					queue = append(queue, dep)
    					queued[dep] = true
    				}
    			}
    			if pkg.test != nil && !queued[pkg.test] {
    				queue = append(queue, pkg.test)
    				queued[pkg.test] = true
    			}
    
    			if !pathIsRoot[m.Path] {
    				if s := mg.Selected(m.Path); gover.ModCompare(m.Path, s, m.Version) < 0 {
    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    			}
    			f.Comment = p.expectSemi()
    			list = append(list, f)
    		case p.tok == token.TILDE:
    			typ := p.embeddedElem(nil)
    			comment := p.expectSemi()
    			list = append(list, &ast.Field{Type: typ, Comment: comment})
    		default:
    			if t := p.tryIdentOrType(); t != nil {
    				typ := p.embeddedElem(t)
    				comment := p.expectSemi()
    				list = append(list, &ast.Field{Type: typ, Comment: comment})
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    			if !mustBeFirst(v.Op) {
    				break
    			}
    			nfirst++
    		}
    		oldSched = append(oldSched[:0], b.Values[nfirst:]...)
    		b.Values = b.Values[:nfirst]
    		b.Values = append(b.Values, start[b.ID]...)
    		for _, v := range oldSched {
    			b.Values = append(b.Values, v)
    			b.Values = append(b.Values, after[v.ID]...)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    func CleanupLeftovers(ctx context.Context, ipt utiliptables.Interface) (encounteredError bool) {
    	logger := klog.FromContext(ctx)
    	// Unlink our chains
    	for _, jump := range append(iptablesJumpChains, iptablesCleanupOnlyChains...) {
    		args := append(jump.extraArgs,
    			"-m", "comment", "--comment", jump.comment,
    			"-j", string(jump.dstChain),
    		)
    		if err := ipt.DeleteRule(jump.table, jump.srcChain, args...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      std::vector<Value> tmp_while_operands;
      Append(tmp_while_operands, loop_operands_0);
      Append(tmp_while_operands, loop_operands_1);
      Append(tmp_while_operands, loop_operands_2);
      Append(tmp_while_operands, forward_res_0);
      Append(tmp_while_operands, forward_res_1);
      Append(tmp_while_operands, core_tpu_res_0);
      Append(tmp_while_operands, non_tpu_res_1);
      Append(tmp_while_operands, {C_0, C_1, C_2});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager_test.go

    				resp.Mounts = append(resp.Mounts, &pluginapi.Mount{
    					ContainerPath: "/container_dir1/file1",
    					HostPath:      "host_dir1/file1",
    					ReadOnly:      true,
    				})
    
    			case "dev2":
    				resp.Devices = append(resp.Devices, &pluginapi.DeviceSpec{
    					ContainerPath: "/dev/ccc",
    					HostPath:      "/dev/ccc",
    					Permissions:   "mrw",
    				})
    
    				resp.Mounts = append(resp.Mounts, &pluginapi.Mount{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    		for k := range cache.iamGroupsMap {
    			res = append(res, k)
    		}
    	}
    
    	if store.getUsersSysType() == LDAPUsersSysType {
    		cache.iamGroupPolicyMap.Range(func(k string, _ MappedPolicy) bool {
    			res = append(res, k)
    			return true
    		})
    	}
    	return
    }
    
    // PolicyDBUpdate - adds or removes given policies to/from the user or group's
    // policy associations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if !ok {
    			return nil, nil, mergepatch.ErrBadArgType(m, v)
    		}
    
    		directive, foundDirective := m[directiveMarker]
    		if foundDirective && directive == deleteDirective {
    			toDelete = append(toDelete, v)
    		} else {
    			nonDelete = append(nonDelete, v)
    		}
    	}
    	return nonDelete, toDelete, nil
    }
    
    // normalizeSliceOrder sort `toSort` list by `order`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top