Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for Osage (1.92 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		for _, a := range m.Additionals[1:] {
    			s += ", " + a.GoString()
    		}
    	}
    	return s + "}}"
    }
    
    // A Builder allows incrementally packing a DNS message.
    //
    // Example usage:
    //
    //	buf := make([]byte, 2, 514)
    //	b := NewBuilder(buf, Header{...})
    //	b.EnableCompression()
    //	// Optionally start a section and add things to that section.
    //	// Repeat adding sections as necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	cleanFlagSet.BoolP("help", "h", false, fmt.Sprintf("help for %s", cmd.Name()))
    
    	// ugly, but necessary, because Cobra's default UsageFunc and HelpFunc pollute the flagset with global flags
    	const usageFmt = "Usage:\n  %s\n\nFlags:\n%s"
    	cmd.SetUsageFunc(func(cmd *cobra.Command) error {
    		fmt.Fprintf(cmd.OutOrStderr(), usageFmt, cmd.UseLine(), cleanFlagSet.FlagUsagesWrapped(2))
    		return nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    .NOTES
      This module depends on common.psm1.
    
      Some portions copied / adapted from
      https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1.
    
    .EXAMPLE
      Suggested usage for dev/test:
        [Net.ServicePointManager]::SecurityProtocol = `
            [Net.SecurityProtocolType]::Tls12
        Invoke-WebRequest `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    			var sz int64
    			objDeleted, sz = item.applyActions(ctx, objAPI, oi, &sizeS)
    			done()
    
    			// DeleteAllVersionsAction: The object and all its
    			// versions are expired and
    			// doesn't contribute toward data usage.
    			if objDeleted {
    				break
    			}
    			actualSz, err := oi.GetActualSize()
    			if err != nil {
    				continue
    			}
    
    			if oi.DeleteMarker {
    				sizeS.deleteMarkers++
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. src/cmd/dist/test.go

    	if runtime.NumCPU() > 4 && runtime.GOMAXPROCS(0) != 1 {
    		for _, w := range worklist {
    			// See go.dev/issue/65164
    			// because GOMAXPROCS=2 runtime CPU usage is low,
    			// so increase maxbg to avoid slowing down execution with low CPU usage.
    			// This makes testing a single package slower,
    			// but testing multiple packages together faster.
    			if strings.Contains(w.dt.heading, "GOMAXPROCS=2 runtime") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    	defer frontendProxy.Close()
    
    	if _, err = frontendProxy.Client().Get(frontendProxy.URL); err == nil {
    		t.Fatalf("want non-nil error")
    	}
    	// The race detector complains about the proxyLog usage in logf in copyBuffer
    	// and our usage below with proxyLog.Bytes() so we're explicitly using a
    	// channel to ensure that the ReverseProxy's ServeHTTP is done before we
    	// continue after Get.
    	<-donec
    
    	expected := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			return
    		}
    		if currentPodMemoryUsage >= uint64(*podResources.Memory) {
    			klog.ErrorS(nil, "Aborting attempt to set pod memory limit less than current memory usage", "pod", pod.Name)
    			result.Fail(fmt.Errorf("Aborting attempt to set pod memory limit less than current memory usage for pod %s", pod.Name))
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    		// aka MIPS_FPABI_ANY. If we mark the object as FPXX, the kernel may use FR=1 mode,
    		// then we meet some problem.
    		// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    		//       It is not for 'ANY'.
    		// TODO: switch to FPXX after be sure that no odd-number-fpr is used.
    		ctxt.Out.Write8(MIPS_FPABI_ANY) // fpAbi
    	}
    	ctxt.Out.Write32(0) // isaExt
    	ctxt.Out.Write32(0) // ases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    					}
    					su.SetRelocAdd(i, r.Add()+localEoffset)
    					r.SetSiz(4)
    					rewritetonop(&ctxt.Target, ldr, su, int64(r.Off()+4), 0xFFFFFFFF, OP_TOCRESTORE)
    				}
    			}
    		}
    	}
    
    	// Append any usage of the go versions of ELF save/restore
    	// functions to the end of the callstub list to minimize
    	// chances a trampoline might be needed.
    	stubs = append(stubs, abifuncs...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    func isSameType(obj1, obj2 interface{}) bool {
    	return reflect.TypeOf(obj1) == reflect.TypeOf(obj2)
    }
    
    // TestServer encapsulates an instantiation of a MinIO instance with a temporary backend.
    // Example usage:
    //
    //	s := StartTestServer(t,"Erasure")
    //	defer s.Stop()
    type TestServer struct {
    	Root         string
    	Disks        EndpointServerPools
    	AccessKey    string
    	SecretKey    string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top