Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for effort (0.11 sec)

  1. src/cmd/cgo/out.go

    		// In internal linking mode, the Go linker sees both
    		// the C wrapper written above and the Go wrapper it
    		// references. Hence, export the C wrapper (e.g., for
    		// if we're building a shared object). The Go linker
    		// will resolve the C wrapper's reference to the Go
    		// wrapper without a separate export.
    		fmt.Fprintf(fgo2, "//go:cgo_export_dynamic %s\n", exp.ExpName)
    		// cgo_export_static refers to a symbol by its linker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    ```
    
    Use `mc admin config set` command to update the configuration for the deployment.Restart the MinIO server to put the changes into effect. The server will print a line like `SQS ARNs: arn:minio:sqs::1:amqp` at start-up if there were no errors.
    
    An example configuration for RabbitMQ is shown below:
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    			faultOnNilArg0: true,
    		},
    
    		// duffcopy
    		// arg0 = address of dst memory (in R21, changed as side effect)
    		// arg1 = address of src memory (in R20, changed as side effect)
    		// arg2 = mem
    		// auxint = offset into duffcopy code to start executing
    		// returns mem
    		// R20, R21 changed as side effect
    		// R16 and R17 may be clobbered by linker trampoline.
    		{
    			name:      "DUFFCOPY",
    			aux:       "Int64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    *.gpg           binary
    ----
    
    You can also ask Gradle to export all trusted keys without updating the verification metadata file:
    
    ----
    ./gradlew --export-keys
    ----
    
    NOTE: This command will not report verification errors, only export keys.
    
    [[sec:bootstrapping-signature-verification]]
    === Bootstrapping and signature verification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            method << ["get", "finalizeValue", "isPresent"]
        }
    
        Property<String> valueProperty() {
            return new DefaultProperty<String>(host, String)
        }
    
        def "runs side effect when calling '#getter' on property to which providers were added via 'put'"() {
            def sideEffect1 = Mock(ValueSupplier.SideEffect)
            def sideEffect2 = Mock(ValueSupplier.SideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            where:
            method << ["get", "finalizeValue", "isPresent"]
        }
    
        Property<String> elementProperty() {
            return new DefaultProperty<String>(host, String)
        }
    
        def "runs side effect when calling '#getter' on property to which providers were added via 'add'"() {
            def sideEffect1 = Mock(ValueSupplier.SideEffect)
            def sideEffect2 = Mock(ValueSupplier.SideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    		}
    		Errorf(nil, "emitRelocations: could not find %q section", sect.Name)
    	}
    }
    
    // xcoffCreateExportFile creates a file with exported symbols for
    // -Wl,-bE option.
    // ld won't export symbols unless they are listed in an export file.
    func xcoffCreateExportFile(ctxt *Link) (fname string) {
    	fname = filepath.Join(*flagTmpdir, "export_file.exp")
    	var buf bytes.Buffer
    
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	require.Equal(t, 2, numCompiles, "expect changing binding causes a recompile")
    }
    
    // Shows that a policy which is in effect will stop being in effect when removed
    func TestRemoveDefinition(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    	testContext := setupFakeTest(t, compiler, matcher)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    			// set of modules to add to the graph, but adding those modules had no
    			// effect — either they were already in the graph, or updateRoots did not
    			// add them as requested.
    			panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
    		}
    		ld.requirements = rs
    	}
    	ld.exitIfErrors(ctx)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            "set"   | "getOrElse"
            "value" | "get"
            "value" | "getOrNull"
            "value" | "getOrElse"
        }
    
        def "runs side effect when calling '#getter' on default property with convention with side effect"() {
            given:
            def property = providerWithNoValue()
            def sideEffect = Mock(ValueSupplier.SideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top