Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Notes (0.14 sec)

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

    			}
    
    			// 3 == NT_GNU_BUILD_ID
    			if typ == 3 && namesz == 4 && bytes.Equal(d[12:16], []byte("GNU\000")) {
    				c++
    			}
    
    			d = d[12+an+ad:]
    		}
    	}
    
    	if c > 1 {
    		t.Errorf("found %d build ID notes", c)
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  2. cmd/erasure-healing-common.go

    	for i, meta := range partsMetadata {
    		if fi.XLV1 == meta.XLV1 {
    			continue
    		}
    		onlineDisks[i] = nil
    	}
    }
    
    // Notes:
    // There are 5 possible states a disk could be in,
    // 1. __online__             - has the latest copy of xl.meta - returned by listOnlineDisks
    //
    // 2. __offline__            - err == errDiskNotFound
    //
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  3. misc/linkcheck/linkcheck.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The linkcheck command finds missing links in the godoc website.
    // It crawls a URL recursively and notes URLs and URL fragments
    // that it's seen and prints a report of missing links at the end.
    package main
    
    import (
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"os"
    	"regexp"
    	"strings"
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 06 15:53:04 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  4. istioctl/pkg/precheck/precheck.go

    			continue
    		}
    		res := ObjectToInstance(&svc)
    		messages.Add(msg.NewUpdateIncompatibility(res,
    			"ENABLE_EXTERNAL_NAME_ALIAS", "1.20",
    			"ExternalName services now behavior differently; consult upgrade notes for more information", "1.20"))
    
    	}
    	return nil
    }
    
    func checkPilot(cli kube.CLIClient, namespace string, messages *diag.Messages) error {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses_test.go

    		t.Run("", func(t *testing.T) {
    			gotEs, err := parseEndpointSet(0, testCase.arg)
    			if err != nil && testCase.success {
    				t.Errorf("Expected success but failed instead %s", err)
    			}
    			if err == nil && !testCase.success {
    				t.Errorf("Expected failure but passed instead")
    			}
    			if !reflect.DeepEqual(testCase.es, gotEs) {
    				t.Errorf("Expected %v, got %v", testCase.es, gotEs)
    			}
    		})
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 15.2K bytes
    - Viewed (0)
Back to top