Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 410 for rebind (0.19 sec)

  1. docs/fa/docs/advanced/sub-applications.md

    و زیر برنامه ها نیز می تواند زیر برنامه های متصل شده خود را داشته باشد و همه چیز به درستی کار کند، زیرا FastAPI تمام این مسیرهای `root_path` را به طور خودکار مدیریت می کند.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. hack/pin-dependency.sh

                (cd "$(dirname "${modfile}")" && go mod edit -replace "${dep}=${replacement}@${rev}")
            done
        fi
      popd >/dev/null 2>&1
    done
    
    echo ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go

    	if err != 0 {
    		return err
    	}
    	return nil
    }
    
    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) error {
    	args := [3]uintptr{uintptr(s), uintptr(addr), uintptr(addrlen)}
    	_, _, err := Syscall(SYS_SOCKETCALL, netBind, uintptr(unsafe.Pointer(&args)), 0)
    	if err != 0 {
    		return err
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    				return false, nil, nil
    			},
    		},
    		// Let the DryRunGetter implementation take care of all GET requests.
    		// The DryRunGetter implementation may call a real API Server behind the scenes or just fake everything
    		&core.SimpleReactor{
    			Verb:     "get",
    			Resource: "*",
    			Reaction: func(action core.Action) (bool, runtime.Object, error) {
    				getAction, ok := action.(core.GetAction)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/internal/buildid/buildid.go

    // it in base64, resulting in a 20-byte string. Because this is only used for
    // detecting the need to rebuild installed files (not for lookups
    // in the object file cache), 120 bits are sufficient to drive the
    // probability of a false "do not need to rebuild" decision to effectively zero.
    // We embed two different hashes in archives and four in binaries,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

            waitAtEndOfBuildForQuietPeriod(quietPeriod)
        }
    
        @UnsupportedWithConfigurationCache(because = "Spock interceptor interference")
        def "should trigger rebuild when java source file is changed during build execution"() {
            given:
            def inputFile = file("src/main/java/Thing.java")
            inputFile << "class Thing {}"
            inputFile.makeOlder()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/port.go

    	Name string
    
    	// Protocol to be used for the port.
    	Protocol protocol.Instance
    
    	// ServicePort number where the service can be reached. Does not necessarily
    	// map to the corresponding port numbers for the instances behind the
    	// service. If zero (default), a service port will be automatically generated for this port.
    	// If set to NoServicePort, this port will be assumed to be a workload-only port.
    	ServicePort int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 18:10:05 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    # whose contents depend on the exact Git version in use, and the steps we take
    # to construct a fake 'git clone' status don't produce some log files that
    # a real 'git clone' leaves behind.
    #
    # However, the repo is probably accurate enough for the tests that need it.
    
    env GIT_AUTHOR_NAME='Russ Cox'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  9. src/time/tick.go

    func NewTicker(d Duration) *Ticker {
    	if d <= 0 {
    		panic("non-positive interval for NewTicker")
    	}
    	// Give the channel a 1-element time buffer.
    	// If the client falls behind while reading, we drop ticks
    	// on the floor until the client catches up.
    	c := make(chan Time, 1)
    	t := (*Ticker)(unsafe.Pointer(newTimer(when(d), int64(d), sendTime, c, syncTimer(c))))
    	t.C = c
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. cni/pkg/ipset/nldeps_linux.go

    //
    // ipset v7.10: Argument `comment' is supported in the kernel module of the set type hash:ip
    // starting from the revision 3 and you have installed revision 1 only.
    // Your kernel is behind your ipset utility.
    //
    // This happens with kernels as recent as Fedora38, e.g: 6.4.11-200.fc38.aarch64
    func (m *realDeps) clearEntriesWithComment(name, comment string) error {
    	res, err := netlink.IpsetList(name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top