Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for insertion (0.22 sec)

  1. cmd/object-api-multipart_test.go

    		// Cases 5-7.
    		// Create parts with 3 uploadID's for the same object.
    		// Testing for listing of all the uploadID's for given object.
    		// Insertion with 3 different uploadID's are done for same bucket and object.
    		{bucketNames[1], objectNames[0], uploadIDs[1], 1, "abcd", "e2fc714c4727ee9395f324cd2e7f331f", int64(len("abcd")), "e2fc714c4727ee9395f324cd2e7f331f"},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    type typeConv struct {
    	// Cache of already-translated or in-progress types.
    	m map[string]*Type
    
    	// Map from types to incomplete pointers to those types.
    	ptrs map[string][]*Type
    	// Keys of ptrs in insertion order (deterministic worklist)
    	// ptrKeys contains exactly the keys in ptrs.
    	ptrKeys []dwarf.Type
    
    	// Type names X for which there exists an XGetTypeID function with type func() CFTypeID.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                }
    
                // lifecycle bindings injection
                resultModel = lifecycleBindingsInjector.injectLifecycleBindings(resultModel, request, problems);
            }
    
            // dependency management import
            resultModel = importDependencyManagement(resultModel, request, problems, importIds);
    
            // dependency management injection
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.json

                    "uid": "${datasource}"
                  },
                  "expr": "sum(rate(sidecar_injection_failure_total[1m]))",
                  "interval": "",
                  "legendFormat": "Injections (Failure)",
                  "refId": "B"
                }
              ],
              "title": "Sidecar Injection",
              "type": "timeseries"
            }
          ],
          "targets": [
            {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 61K bytes
    - Viewed (0)
  5. cmd/object-api-listobjects_test.go

    				// should match in both expected result from test cases
    				// and in the output. On failure calling t.Fatalf,
    				// otherwise it may lead to index out of range error in
    				// assertion following this.
    				if !testCase.versioned {
    					if len(testCase.resultL.Objects) != len(resultL.Objects) {
    						t.Logf("want: %v", objInfoNames(testCase.resultL.Objects))
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 11:07:40 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    			}
    		}
    	}
    
    	if match {
    		reqMatchFacts := []string{}
    
    		if route.Fault != nil {
    			reqMatchFacts = append(reqMatchFacts, fmt.Sprintf("Fault injection %s", route.Fault.String()))
    		}
    
    		// TODO Consider adding Headers, SourceLabels
    
    		for _, trafficMatch := range route.Match {
    			reqMatchFacts = append(reqMatchFacts, renderMatch(trafficMatch))
    		}
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /* MNG-2309*/
        @Test
        void testProfileInjectionOrder() throws Exception {
            PomTestWrapper pom = buildPom("profile-injection-order", "pom-a", "pom-b", "pom-e", "pom-c", "pom-d");
            assertEquals("e", pom.getValue("properties[1]/pomProperty"));
        }
    
        @Test
        void testPropertiesInheritance() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    }
    
    // return URL for inserting bucket notification.
    func getPutNotificationURL(endPoint, bucketName string) string {
    	queryValue := url.Values{}
    	queryValue.Set("notification", "")
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    // return URL for inserting bucket policy.
    func getPutPolicyURL(endPoint, bucketName string) string {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        protected void insert(final String entryDN, final Attributes entry, final Supplier<Hashtable<String, String>> envSupplier) {
            try (DirContextHolder holder = getDirContext(envSupplier)) {
                logger.debug("Inserting {}", entryDN);
                holder.get().createSubcontext(entryDN, entry);
            } catch (final NamingException e) {
                throw new LdapOperationException("Failed to add " + entryDN, e);
            }
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  10. cmd/iam.go

    	// sends `null` when no policy is set and the intended behavior is that the
    	// service account should inherit parent policy.
    	//
    	// However, for a policy like `{"Statement":[]}`, the intention is to not
    	// provide any permissions via the session policy - i.e. the service account
    	// can do nothing (such a JSON could be generated by an external application
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
Back to top