Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 424 for loadOps (0.23 sec)

  1. fastapi/openapi/docs.py

                It defaults to [swagger_ui_default_parameters][fastapi.openapi.docs.swagger_ui_default_parameters].
                """
            ),
        ] = None,
    ) -> HTMLResponse:
        """
        Generate and return the HTML  that loads Swagger UI for the interactive
        API docs (normally served at `/docs`).
    
        You would only call this function yourself if you needed to override some parts,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/options/configfile.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/scheme"
    	configv1 "k8s.io/kubernetes/pkg/scheduler/apis/config/v1"
    )
    
    // LoadConfigFromFile loads scheduler config from the specified file path
    func LoadConfigFromFile(logger klog.Logger, file string) (*config.KubeSchedulerConfiguration, error) {
    	data, err := os.ReadFile(file)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/reflect/abi.go

    }
    
    // intFromReg loads an argSize sized integer from reg and places it at to.
    //
    // argSize must be non-zero, fit in a register, and a power-of-two.
    func intFromReg(r *abi.RegArgs, reg int, argSize uintptr, to unsafe.Pointer) {
    	memmove(to, r.IntRegArgAddr(reg, argSize), argSize)
    }
    
    // intToReg loads an argSize sized integer and stores it into reg.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/sync/map.go

    package sync
    
    import (
    	"sync/atomic"
    )
    
    // Map is like a Go map[any]any but is safe for concurrent use
    // by multiple goroutines without additional locking or coordination.
    // Loads, stores, and deletes run in amortized constant time.
    //
    // The Map type is specialized. Most code should use a plain Go map instead,
    // with separate locking or coordination, for better type safety and to make it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_riscv64.s

    	JMP	·Load(SB)
    
    TEXT ·LoadAcq64(SB),NOSPLIT|NOFRAME,$0-16
    	JMP	·Load64(SB)
    
    TEXT ·LoadAcquintptr(SB),NOSPLIT|NOFRAME,$0-16
    	JMP	·Load64(SB)
    
    // func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    TEXT ·Loadp(SB),NOSPLIT,$0-16
    	JMP	·Load64(SB)
    
    // func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    TEXT ·StorepNoWB(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·StoreRel(SB), NOSPLIT, $0-12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/mesh.go

    	if multiWatch {
    		kubemesh.AddUserMeshConfig(s.kubeClient, s.environment.Watcher, args.Namespace, configMapKey, features.SharedMeshConfig, s.internalStop)
    	}
    }
    
    // initMeshNetworks loads the mesh networks configuration from the file provided
    // in the args and add a watcher for changes in this file.
    func (s *Server) initMeshNetworks(args *PilotArgs, fileWatcher filewatcher.FileWatcher) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. src/runtime/tls_arm.s

    	BIC $3, R0 // Darwin/ARM might return unaligned pointer
    	MOVW	runtime·tls_g(SB), R11
    	ADD	R11, R0
    	MOVW	g, 0(R0)
    	MOVW	g, R0 // preserve R0 across call to setg<>
    	RET
    
    // load_g loads the g register from pthread-provided
    // thread-local memory, for use after calling externally compiled
    // ARM code that overwrote those registers.
    TEXT runtime·load_g(SB),NOSPLIT,$0
    	// See save_g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

                        orphaned.put(entry.getKey(), entry.getValue());
                    }
                }
    
                if (!orphaned.isEmpty()) {
                    throw new IllegalStateException("The following class loaders are orphaned: " + Joiner.on(",").withKeyValueSeparator(":").join(orphaned));
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_mips64x.s

    	RET
    
    // uint64 ·Load64(uint64 volatile* ptr)
    TEXT ·Load64(SB),NOSPLIT|NOFRAME,$0-16
    	MOVV	ptr+0(FP), R1
    	SYNC
    	MOVV	0(R1), R1
    	SYNC
    	MOVV	R1, ret+8(FP)
    	RET
    
    // void *·Loadp(void *volatile *ptr)
    TEXT ·Loadp(SB),NOSPLIT|NOFRAME,$0-16
    	MOVV	ptr+0(FP), R1
    	SYNC
    	MOVV	0(R1), R1
    	SYNC
    	MOVV	R1, ret+8(FP)
    	RET
    
    // uint32 ·LoadAcq(uint32 volatile* ptr)
    TEXT ·LoadAcq(SB),NOSPLIT|NOFRAME,$0-12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. maven-embedder/src/main/mdo/core-extensions.mdo

              <type>String</type>
            </field>
            <field>
              <name>classLoadingStrategy</name>
              <description>The class loading strategy: 'self-first' (the default), 'parent-first' (loads classes from the parent, then from the extension) or 'plugin' (follows the rules from extensions defined as plugins).</description>
              <version>1.1.0+</version>
              <defaultValue>self-first</defaultValue>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top