Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for locations (0.38 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		// This is wrong, but there seem to be some situations where we
    		// produce locations with no storage.
    		return 0
    	}
    	return uint8(bits.TrailingZeros64(uint64(set)))
    }
    
    // buildLocationLists builds location lists for all the user variables
    // in state.f, using the information about block state in blockLocs.
    // The returned location lists are not fully complete. They are in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The `Project.buildDir` property is deprecated.
    It uses eager APIs and has ordering issues if the value is read in build logic and then later modified.
    It could result in outputs ending up in different locations.
    
    It is replaced by a `link:{javadocPath}/org/gradle/api/file/DirectoryProperty.html[DirectoryProperty]` found at `Project.layout.buildDirectory`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    			testCases := []struct {
    				location   v1alpha3.ServiceEntry_Location
    				resolution v1alpha3.ServiceEntry_Resolution
    				to         echo.Instances
    			}{
    				{
    					location:   v1alpha3.ServiceEntry_MESH_INTERNAL,
    					resolution: v1alpha3.ServiceEntry_STATIC,
    					to:         apps.Mesh,
    				},
    				{
    					location:   v1alpha3.ServiceEntry_MESH_EXTERNAL,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        Block *block = rewriter->createBlock(
            &branch_func.getBody(), branch_func.begin(), inputs,
            SmallVector<Location>(inputs.size(), branch_func.getLoc()));
    
        auto input_shape = block->getArgument(1);
        auto size_diff = block->getArgument(2);
        auto input = block->getArgument(0);
    
        Location loc = resize_op.getLoc();
        // Get the element shape by slicing from index 1 in the input shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/time/format.go

    // to a time zone used by the current location ([Local]), then Parse uses that
    // location and zone in the returned time. Otherwise it records the time as
    // being in a fabricated location with time fixed at the given zone offset.
    //
    // When parsing a time with a zone abbreviation like MST, if the zone abbreviation
    // has a defined offset in the current location, then that offset is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            // use key as is
                        }
                    }
    
                    location = tracker.getLocation(key);
                }
    
                if (location == null) {
                    location = tracker.getLocation(EMPTY);
                }
            }
    
            return location;
        }
    
        private static boolean equals(String s1, String s2) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    					bucket, err))
    			}
    		}(bucket)
    	}
    	wg.Wait()
    }
    
    // GetBucketLocationHandler - GET Bucket location.
    // -------------------------
    // This operation returns bucket location.
    func (api objectAPIHandlers) GetBucketLocationHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketLocation")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    InputLocation location = plugins.get(key).getLocation("");
                    problems.add(
                            Severity.WARNING,
                            ModelProblem.Version.V20,
                            "'build.plugins.plugin.version' for " + key + " is missing.",
                            location);
                }
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	req.Header.Set("Authorization", auth)
    
    	return nil
    }
    
    // getCredentialString generate a credential string.
    func getCredentialString(accessKeyID, location string, t time.Time) string {
    	return accessKeyID + SlashSeparator + getScope(t, location)
    }
    
    // getMD5HashBase64 returns MD5 hash in base64 encoding of given data.
    func getMD5HashBase64(data []byte) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    	}
    
    	assumeRole := cr.STSAssumeRole{
    		Client:      s.TestSuiteCommon.client,
    		STSEndpoint: s.endPoint,
    		Options: cr.STSAssumeRoleOptions{
    			AccessKey: "dillon",
    			SecretKey: "dillon-123",
    			Location:  "",
    		},
    	}
    
    	value, err := assumeRole.Retrieve()
    	if err != nil {
    		c.Fatalf("Expected to generate STS creds, got err: %#v", err)
    	}
    
    	// Check that the LDAP sts cred is actually working.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top