Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 213 for experts (0.17 sec)

  1. pkg/workloadapi/workload.proto

      WorkloadType workload_type = 12;
      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
      // If set, this indicates a workload expects to directly receive tunnel traffic.
      // In ztunnel, this means:
      // * Requests *from* this workload do not need to be tunneled if they already are tunneled by the tunnel_protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. cmd/handler-utils.go

    		}, r.URL)
    	case strings.HasPrefix(r.URL.Path, adminPathPrefix):
    		var desc string
    		version := extractAPIVersion(r)
    		switch version {
    		case "v1", madmin.AdminAPIVersionV2:
    			desc = fmt.Sprintf("Server expects client requests with 'admin' API version '%s', found '%s', please upgrade the client to latest releases", madmin.AdminAPIVersion, version)
    		case madmin.AdminAPIVersion:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pkg/registry/core/service/strategy.go

    		newSvc.Spec.TrafficDistribution = nil
    	}
    }
    
    type serviceStatusStrategy struct {
    	svcStrategy
    }
    
    // StatusStrategy wraps and exports the used svcStrategy for the storage package.
    var StatusStrategy = serviceStatusStrategy{Strategy}
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/encoding/xml/read_test.go

    server and checking that the server got the right publish
    requests.
    
    I can't quite get the server to work, but I think the bug
    is not in my code.  I think that the server expects to be
    able to grab the feed and see the feed's actual URL in
    the link rel="self", but the default value for that drops
    the :port from the URL, and I cannot for the life of me
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * which contained the following notice:
       *
       * Written by Doug Lea with assistance from members of JCP JSR-166 Expert Group and released to
       * the public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/
       *
       * Other contributors include Andrew Wright, Jeffrey Hayes, Pat Fisher, Mike Judd.
       */
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/cache/secretcache_test.go

    	}
    
    	// First update will trigger root cert immediately, then workload cert once it expires in 200ms
    	u.Expect(map[string]int{security.WorkloadKeyCertResourceName: 1, security.RootCertReqResourceName: 1})
    
    	_, err = sc.GenerateSecret(security.WorkloadKeyCertResourceName)
    	if err != nil {
    		t.Fatalf("failed to get secrets: %v", err)
    	}
    
    	u.Expect(map[string]int{security.WorkloadKeyCertResourceName: 2, security.RootCertReqResourceName: 1})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/config.go

    //
    // Resource versions record the last mutation operation on each object. If a
    // mutation is applied to a different revision of an object than what the
    // underlying storage expects as defined by pure equality, the operation is
    // blocked.  The client of this interface should not make assumptions about the
    // structure or ordering of the revision identifier.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/go/types/issues_test.go

    	}
    }
    
    func TestIssue59831(t *testing.T) {
    	// Package a exports a type S with an unexported method m;
    	// the tests check the error messages when m is not found.
    	const asrc = `package a; type S struct{}; func (S) m() {}`
    	apkg := mustTypecheck(asrc, nil, nil)
    
    	// Package b exports a type S with an exported method m;
    	// the tests check the error messages when M is not found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

                                << "\n" << e1 << " evaluates to " << v1;
    }
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
    // Don't use this in your code.
    #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
      GTEST_ASSERT_(pred_format(#v1, v1), \
                    on_failure)
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED1.  Don't use
    // this in your code.
    #define GTEST_PRED1_(pred, v1, on_failure)\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/builtins.go

    		src0 := coreString(y.typ)
    		if src0 != nil && isString(src0) {
    			src0 = NewSlice(universeByte)
    		}
    		src, _ := src0.(*Slice)
    
    		if dst == nil || src == nil {
    			check.errorf(x, InvalidCopy, invalidArg+"copy expects slice arguments; found %s and %s", x, y)
    			return
    		}
    
    		if !Identical(dst.elem, src.elem) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top