Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for central (0.35 sec)

  1. src/crypto/x509/verify_test.go

    		{host: "*foo.example.com"},
    		{host: "foo.*.example.com"},
    		{host: "exa_mple.com", validInput: true, validPattern: true},
    		{host: "foo,bar"},
    		{host: "project-dev:us-central1:main"},
    	}
    	for _, tt := range tests {
    		if got := validHostnamePattern(tt.host); got != tt.validPattern {
    			t.Errorf("validHostnamePattern(%q) = %v, want %v", tt.host, got, tt.validPattern)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    )
    
    type WSABuf struct {
    	Len uint32
    	Buf *byte
    }
    
    type WSAMsg struct {
    	Name        *syscall.RawSockaddrAny
    	Namelen     int32
    	Buffers     *WSABuf
    	BufferCount uint32
    	Control     WSABuf
    	Flags       uint32
    }
    
    // Flags for WSASocket
    const (
    	WSA_FLAG_OVERLAPPED             = 0x01
    	WSA_FLAG_MULTIPOINT_C_ROOT      = 0x02
    	WSA_FLAG_MULTIPOINT_C_LEAF      = 0x04
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

      ztunnel-dashboard.json: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		}
    
    		if size > 1*mb {
    			errs = AppendValidation(errs, WrapError(fmt.Errorf("large direct_responses may impact control plane performance, must be less than 1MB")))
    		} else if size > 100*kb {
    			errs = AppendValidation(errs, WrapWarning(fmt.Errorf("large direct_responses may impact control plane performance")))
    		}
    	}
    
    	errs = AppendValidation(errs, WrapError(validateHTTPStatus(int32(directResponse.Status))))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //===----------------------------------------------------------------------===//
    
    bool GeneratorDatasetRegionOp::areTypesCompatible(Type t1, Type t2) {
      return true;  // Don't enforce type checking across control-flow edges.
    }
    
    void GeneratorDatasetRegionOp::getRegionInvocationBounds(
        ArrayRef<Attribute> operands,
        SmallVectorImpl<InvocationBounds>& invocationBounds) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    			}
    		})
    	}
    }
    
    func checkIndexedJobPods(t *testing.T, control *controller.FakePodControl, wantIndexes sets.Set[int], jobName string, podIndexLabelDisabled bool) {
    	t.Helper()
    	gotIndexes := sets.New[int]()
    	for _, p := range control.Templates {
    		checkJobCompletionEnvVariable(t, &p.Spec, podIndexLabelDisabled)
    		if !podIndexLabelDisabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=53
    	data="runtime.(*sweepLocked).sweep"
    String id=54
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcsweep.go"
    String id=55
    	data="runtime.(*mcentral).cacheSpan"
    String id=56
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mcentral.go"
    String id=57
    	data="runtime.(*mcache).refill"
    String id=58
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mcache.go"
    String id=59
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    			t.Errorf("Error closing fakeConn: %v", err)
    		}
    	})
    	db.mu.Lock()
    	for i, dc := range db.freeConn {
    		if n := len(dc.openStmt); n > 0 {
    			// Just a sanity check. This is legal in
    			// general, but if we make the tests clean up
    			// their statements first, then we can safely
    			// verify this is always zero here, and any
    			// other value is a leak.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/net/http/server.go

    //     and whose third segment is "o". The name "bucket" denotes the second
    //     segment and "objectname" denotes the remainder of the path.
    //
    // In general, a pattern looks like
    //
    //	[METHOD ][HOST]/[PATH]
    //
    // All three parts are optional; "/" is a valid pattern.
    // If METHOD is present, it must be followed by at least one space or tab.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top