Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for band (0.05 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    	{AADDV, C_ANDCON, C_REG, C_REG, 10, 8, 0, sys.MIPS64, 0},
    	{AADDV, C_ANDCON, C_NONE, C_REG, 10, 8, 0, sys.MIPS64, 0},
    
    	{AAND, C_AND0CON, C_REG, C_REG, 4, 4, 0, 0, 0},
    	{AAND, C_AND0CON, C_NONE, C_REG, 4, 4, 0, 0, 0},
    	{AAND, C_ADDCON, C_REG, C_REG, 10, 8, 0, 0, 0},
    	{AAND, C_ADDCON, C_NONE, C_REG, 10, 8, 0, 0, 0},
    
    	{AADD, C_UCON, C_REG, C_REG, 25, 8, 0, 0, 0},
    	{AADD, C_UCON, C_NONE, C_REG, 25, 8, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    			// Claim is bound but volume has come unbound.
    			// Or, a claim was bound and the controller has not received updated
    			// volume yet. We can't distinguish these cases.
    			// Bind the volume again and set all states to Bound.
    			logger.V(4).Info("Synchronizing bound PersistentVolumeClaim, volume is unbound, fixing", "PVC", klog.KObj(claim))
    			if err = ctrl.bind(ctx, volume, claim); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/asm5.go

    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    							this.toggle_node(trgt);
    						}, this))
    					.bind("mousedown.jstree", $.proxy(function () {
    							this.set_focus(); // This used to be setTimeout(set_focus,0) - why?
    						}, this))
    					.bind("dblclick.jstree", function (event) {
    						var sel;
    						if(document.selection && document.selection.empty) { document.selection.empty(); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    				return err
    			}
    		}
    	}
    
    	// bind service address to dummy interface
    	if bindAddr {
    		// always attempt to bind if alreadyBoundAddrs is nil,
    		// otherwise check if it's already binded and return early
    		if alreadyBoundAddrs != nil && alreadyBoundAddrs.Has(vs.Address.String()) {
    			return nil
    		}
    
    		proxier.logger.V(4).Info("Bind address", "address", vs.Address)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    	// bind another P. This P is about to go ProcIdle anyway.
    	oldStatus := state.status
    	ev.extra(version.Go122)[0] = uint64(oldStatus)
    
    	// Update the P's status and sequence number.
    	state.status = go122.ProcIdle
    	state.seq = seq
    
    	// If we've lost information then don't try to do anything with the M.
    	// It may have moved on and we can't be sure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    	// a win32finddata1, and then copy the results out.
    	// There is no loss of expressivity here, because the final
    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    	// For Go 1.1, we might avoid the allocation of win32finddata1 here
    	// by adding a final Bug [2]uint16 field to the struct and then
    	// adjusting the fields in the result directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/adminlte.min.js.map

    const Event = {\n    SIDEBAR: 'sidebar'\n  }\n\n  const Selector = {\n    HEADER         : '.main-header',\n    MAIN_SIDEBAR   : '.main-sidebar',\n    SIDEBAR        : '.main-sidebar .sidebar',\n    CONTENT        : '.content-wrapper',\n    BRAND          : '.brand-link',\n    CONTENT_HEADER : '.content-header',\n    WRAPPER        : '.wrapper',\n    CONTROL_SIDEBAR: '.control-sidebar',\n    CONTROL_SIDEBAR_CONTENT: '.control-sidebar-content',\n    CONTROL_SIDEBAR_BTN: '[data-widget=\"control-sidebar\"]',\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

        }
    
        def "cannot bind action targeting type for role #targetRole where type is not available"() {
            when:
            registry.configure(targetRole, ModelReference.of("thing", Bean), Actions.doNothing())
    
            then:
            def ex = thrown IllegalStateException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:jaxb_and_java9]]
    === [5.0] Gradle now bundles JAXB for Java 9 and above
    
    In order to use S3 backed artifact repositories, you previously had to add `--add-modules java.xml.bind` to `org.gradle.jvmargs` when running on Java 9 and above.
    
    Since Java 11 no longer contains the `java.xml.bind` module, Gradle now bundles JAXB 2.3.1 (`com.sun.xml.bind:jaxb-impl`) and uses it on Java 9 and above.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top