Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 282 for Appendp (4.04 sec)

  1. src/cmd/go/internal/test/test.go

    			} else {
    				base.Errorf("%s", str)
    			}
    			fmt.Printf("FAIL\t%s [setup failed]\n", p.ImportPath)
    			continue
    		}
    		builds = append(builds, buildTest)
    		runs = append(runs, runTest)
    		prints = append(prints, printTest)
    	}
    
    	// Order runs for coordinating start JSON prints.
    	ch := make(chan struct{})
    	close(ch)
    	for _, a := range runs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		}
    
    		statusScopes[v.Name] = &statusScope
    
    		if v.Deprecated {
    			deprecated[v.Name] = true
    			if v.DeprecationWarning != nil {
    				warnings[v.Name] = append(warnings[v.Name], *v.DeprecationWarning)
    			} else {
    				warnings[v.Name] = append(warnings[v.Name], defaultDeprecationWarning(v.Name, crd.Spec))
    			}
    		}
    	}
    
    	ret := &crdInfo{
    		spec:                &crd.Spec,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		buildServiceWithPort("test5.com", 15006, protocol.TCP, tnow),
    		buildServiceWithPort("test6.com", 8081, protocol.HTTP, tnow.Add(2*time.Second)),
    	}
    	services := append([]*model.Service(nil), servicesConflictWithStaticListener...)
    	services = append(services, servicesConflictWithVirtualListener...)
    
    	// with sidecar
    	sidecarConfig := &config.Config{
    		Meta: config.Meta{
    			Name:             "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    	i--
    	dAtA[i] = 0x1
    	i--
    	dAtA[i] = 0x82
    	if len(m.Annotations) > 0 {
    		keysForAnnotations := make([]string, 0, len(m.Annotations))
    		for k := range m.Annotations {
    			keysForAnnotations = append(keysForAnnotations, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForAnnotations)
    		for iNdEx := len(keysForAnnotations) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.Annotations[string(keysForAnnotations[iNdEx])]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

          return first;
        }
    
        StringBuilder sb = new StringBuilder().append("expected one element but was: <").append(first);
        for (int i = 0; i < 4 && iterator.hasNext(); i++) {
          sb.append(", ").append(iterator.next());
        }
        if (iterator.hasNext()) {
          sb.append(", ...");
        }
        sb.append('>');
    
        throw new IllegalArgumentException(sb.toString());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

          return first;
        }
    
        StringBuilder sb = new StringBuilder().append("expected one element but was: <").append(first);
        for (int i = 0; i < 4 && iterator.hasNext(); i++) {
          sb.append(", ").append(iterator.next());
        }
        if (iterator.hasNext()) {
          sb.append(", ...");
        }
        sb.append('>');
    
        throw new IllegalArgumentException(sb.toString());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. cmd/erasure-healing_test.go

    	err = objLayer.MakeBucket(ctx, bucket, MakeBucketOptions{})
    	if err != nil {
    		t.Fatalf("Failed to make a bucket - %v", err)
    	}
    
    	disks := objLayer.(*erasureServerPools).serverPools[0].erasureDisks[0]
    	orgDisks := append([]StorageAPI{}, disks...)
    
    	// Enable versioning.
    	globalBucketMetadataSys.Update(ctx, bucket, bucketVersioningConfig, []byte(`<VersioningConfiguration><Status>Enabled</Status></VersioningConfiguration>`))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    				continue
    			}
    		}
    
    		modFiles = append(modFiles, f)
    		mainModule := f.Module.Mod
    		mainModules = append(mainModules, mainModule)
    		indices = append(indices, indexModFile(data, f, mainModule, fixed))
    
    		if err := module.CheckImportPath(f.Module.Mod.Path); err != nil {
    			if pathErr, ok := err.(*module.InvalidPathError); ok {
    				pathErr.Kind = "module"
    			}
    			errs = append(errs, err)
    		}
    	}
    	if len(errs) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    // checkpoint saves the current state of known relations.
    // Called when descending on a branch.
    func (ft *factsTable) checkpoint() {
    	if ft.unsat {
    		ft.unsatDepth++
    	}
    	ft.stack = append(ft.stack, checkpointFact)
    	ft.limitStack = append(ft.limitStack, checkpointBound)
    	ft.orderS.Checkpoint()
    	ft.orderU.Checkpoint()
    }
    
    // restore restores known relation to the state just
    // before the previous checkpoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			Tags:                  tags,
    			ResolveMissingImports: true,
    			SilencePackageErrors:  true,
    		},
    		requirements: rs,
    		listRoots: func(*Requirements) (roots []string) {
    			roots = append(roots, imports...)
    			roots = append(roots, testImports...)
    			return roots
    		},
    	})
    	requirements = loaded.requirements
    
    	if !ExplicitWriteGoMod {
    		if err := commitRequirements(ctx, WriteOpts{}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top