Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,027 for relaxed (0.12 sec)

  1. pkg/apis/events/v1/zz_generated.conversion.go

    	out.ReportingInstance = in.ReportingInstance
    	out.Action = in.Action
    	out.Reason = in.Reason
    	// WARNING: in.Regarding requires manual conversion: does not exist in peer-type
    	out.Related = (*core.ObjectReference)(unsafe.Pointer(in.Related))
    	// WARNING: in.Note requires manual conversion: does not exist in peer-type
    	out.Type = in.Type
    	// WARNING: in.DeprecatedSource requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  2. pkg/apis/events/v1beta1/zz_generated.conversion.go

    	out.ReportingInstance = in.ReportingInstance
    	out.Action = in.Action
    	out.Reason = in.Reason
    	// WARNING: in.Regarding requires manual conversion: does not exist in peer-type
    	out.Related = (*core.ObjectReference)(unsafe.Pointer(in.Related))
    	// WARNING: in.Note requires manual conversion: does not exist in peer-type
    	out.Type = in.Type
    	// WARNING: in.DeprecatedSource requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  3. cmd/format-meta.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Format related consts
    const (
    	// Format config file carries backend format specific details.
    	formatConfigFile = "format.json"
    )
    
    const (
    	// Version of the formatMetaV1
    	formatMetaVersionV1 = "1"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/bug-report.yaml

        attributes:
          label: What happened?
          description: |
            Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
            If this matter is security related, please disclose it privately via https://kubernetes.io/security
        validations:
          required: true
    
      - type: textarea
        id: expected
        attributes:
          label: What did you expect to happen?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 28 09:34:43 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/mstats.go

    			print("runtime: released=", uint64(consStats.released), "\n")
    			print("runtime: totalMapped-released=", totalMapped-uint64(consStats.released), "\n")
    			throw("mappedReady and other memstats are not equal")
    		}
    		unlock(&trace.lock)
    		unlock(&sched.sysmonlock)
    	}
    
    	// We've calculated all the values we need. Now, populate stats.
    
    	stats.Alloc = totalAlloc - totalFree
    	stats.TotalAlloc = totalAlloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/README.md

    # Writing Tests for VMs
    
    This document describes the integration and extension mechanisms to exercise VM related code.
    The primary goals are to:
    1. Test VM-related Istio code so that newly submitted commits won't break VM support
    1. Ensure the code works on a range of supported OS types and versions.
    
    **Note: We currently use mock/simulated VMs for testing purposes. In the future, the testing might switch
    to utilize actual compute instances from different providers.**
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. .gitignore

    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    .\#*
    
    # Vim-related files
    [._]*.s[a-w][a-z]
    [._]s[a-w][a-z]
    *.un~
    Session.vim
    .netrwhist
    
    # cscope-related files
    cscope.*
    
    # Go test binaries
    *.test
    /hack/.test-cmd-auth
    
    # JUnit test output from ginkgo e2e tests
    /junit*.xml
    
    # Mercurial files
    **/.hg
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

                'Failed to handle GET /b due to a timeout waiting to be released. Waiting for 0 further requests, received [GET /a, GET /b], released [], not yet received [GET /c]'
            ]
        }
    
        def "fails when request is not released after sending partial response"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. pkg/proxy/conntrack/cleanup.go

    	deleteStaleEndpointConntrackEntries(ct, svcPortMap, endpointsUpdateResult)
    }
    
    // deleteStaleServiceConntrackEntries takes care of flushing stale conntrack entries related
    // to UDP Service IPs. When a service has no endpoints and we drop traffic to it, conntrack
    // may create "black hole" entries for that IP+port. When the service gets endpoints we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder.go

    type SchedulerVolumeBinder interface {
    	// GetPodVolumeClaims returns a pod's PVCs separated into bound, unbound with delayed binding (including provisioning),
    	// unbound with immediate binding (including prebound) and PVs that belong to storage classes of unbound PVCs with delayed binding.
    	GetPodVolumeClaims(logger klog.Logger, pod *v1.Pod) (podVolumeClaims *PodVolumeClaims, err error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top