Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for Grappler (0.18 sec)

  1. pilot/pkg/networking/core/route/route.go

    		)
    		out = append(out, wrappers...)
    	}
    
    	// Now exclude the services that have virtual services.
    	for _, wrapper := range out {
    		for _, service := range wrapper.Services {
    			delete(serviceRegistry, service.Hostname)
    		}
    	}
    
    	for _, svc := range serviceRegistry {
    		for _, port := range svc.Ports {
    			if port.Protocol.IsHTTPOrSniffed() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	// EnumProcesses syscall expects the size parameter to be in bytes, but the code generated with mksyscall uses
    	// the length of the processIds slice instead. Hence, this wrapper function is added to fix the discrepancy.
    	var p *uint32
    	if len(processIds) > 0 {
    		p = &processIds[0]
    	}
    	size := uint32(len(processIds) * 4)
    	return enumProcesses(p, size, bytesReturned)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      }
    
      // Runs every test in this TestCase.
      void Run();
    
      // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
      // for catching exceptions thrown from SetUpTestCase().
      void RunSetUpTestCase() { (*set_up_tc_)(); }
    
      // Runs TearDownTestCase() for this TestCase.  This wrapper is
      // needed for catching exceptions thrown from TearDownTestCase().
      void RunTearDownTestCase() { (*tear_down_tc_)(); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	// For the moment, allow DWARF subprogram DIEs for
    	// auto-generated wrapper functions. What seems to happen
    	// here is that we get different line numbers on formal
    	// params; I am guessing that the pos is being inherited
    	// from the spot where the wrapper is needed.
    	allowed := strings.HasPrefix(name, "go:info.go.interface") ||
    		strings.HasPrefix(name, "go:info.go.builtin") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. cmd/iam.go

    	}
    
    	select {
    	case <-sys.configLoaded:
    		return sys.store.ListSTSAccounts(ctx, accessKey)
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    }
    
    // GetServiceAccount - wrapper method to get information about a service account
    func (sys *IAMSys) GetServiceAccount(ctx context.Context, accessKey string) (auth.Credentials, *policy.Policy, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    }
    
    // elideWrapperCalling reports whether a wrapper function that called
    // function id should be elided from stack traces.
    func elideWrapperCalling(id abi.FuncID) bool {
    	// If the wrapper called a panic function instead of the
    	// wrapped function, we want to include it in stacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

            delete ptr_;
          }
          ptr_ = p;
        }
      }
    
     private:
      T* ptr_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr);
    };
    
    // Defines RE.
    
    // A simple C++ wrapper for <regex.h>.  It uses the POSIX Extended
    // Regular Expression syntax.
    class GTEST_API_ RE {
     public:
      // A copy constructor is required by the Standard to initialize object
      // references from r-values.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // request. Valid values are:
      // - All: all dry run stages will be processed
      // +optional
      repeated string dryRun = 5;
    }
    
    // Duration is a wrapper around time.Duration which supports correct
    // marshaling to YAML and JSON. In particular, it marshals into strings, which
    // can be used as map keys in json.
    message Duration {
      optional int64 duration = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // request. Valid values are:
      // - All: all dry run stages will be processed
      // +optional
      // +listType=atomic
      repeated string dryRun = 5;
    }
    
    // Duration is a wrapper around time.Duration which supports correct
    // marshaling to YAML and JSON. In particular, it marshals into strings, which
    // can be used as map keys in json.
    message Duration {
      optional int64 duration = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. src/reflect/type.go

    // The (*rtype).nameOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
    
    // resolveTypeOff resolves an *rtype offset from a base type.
    // The (*rtype).typeOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top