Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 192 for newobject (0.42 sec)

  1. cmd/global-heal.go

    		// If we resume to the same bucket, forward to last known item.
    		b := tracker.getBucket()
    		if b == bucket {
    			forwardTo = tracker.getObject()
    		}
    		if b != "" {
    			// Reset to where last bucket ended if resuming.
    			tracker.resume()
    		}
    		tracker.setObject("")
    		tracker.setBucket(bucket)
    		// Heal current bucket again in case if it is failed
    		// in the beginning of erasure set healing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                } else {
                    out.name("subtype").value("file");
                }
                out.endObject();
            }
    
            @Override
            public FileLocation read(JsonReader in) throws IOException {
                in.beginObject();
                FileLocation fileLocation = readObject(in);
                in.endObject();
    
                Objects.requireNonNull(fileLocation, "path must not be null");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

                            }
                            reader.endObject();
                            break;
                        default:
                            consumeAny(reader);
                            break;
                    }
                }
                assertDefined(reader, "group", group);
                assertDefined(reader, "module", module);
                reader.endObject();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. plugin/pkg/admission/noderestriction/admission.go

    		}
    	}
    
    	if a.GetOperation() == admission.Update {
    		node, ok := a.GetObject().(*api.Node)
    		if !ok {
    			return admission.NewForbidden(a, fmt.Errorf("unexpected type %T", a.GetObject()))
    		}
    		oldNode, ok := a.GetOldObject().(*api.Node)
    		if !ok {
    			return admission.NewForbidden(a, fmt.Errorf("unexpected type %T", a.GetObject()))
    		}
    
    		// Don't allow a node to update the config source on its Node API object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_pod_control_test.go

    		create := action.(core.CreateAction)
    		claimIndexer.Add(create.GetObject())
    		return true, create.GetObject(), nil
    	})
    	fakeClient.AddReactor("create", "pods", func(action core.Action) (bool, runtime.Object, error) {
    		create := action.(core.CreateAction)
    		return true, create.GetObject(), nil
    	})
    	if err := control.CreateStatefulPod(context.TODO(), set, pod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    		createAction := action.(core.CreateAction)
    		pod := createAction.GetObject().(*v1.Pod)
    		extraPods.Items = append(extraPods.Items, *pod)
    		return true, createAction.GetObject(), nil
    	})
    	fakeClient.AddReactor("list", "csinodes", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		obj := &storagev1.CSINodeList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.fixtures
    
    import com.dd.plist.NSArray
    import com.dd.plist.NSDictionary
    import com.dd.plist.NSObject
    import com.dd.plist.NSString
    import com.dd.plist.PropertyListParser
    import com.google.common.base.MoreObjects
    import org.gradle.ide.xcode.internal.xcodeproj.PBXTarget.ProductType
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/XcodeprojSerializer.java

     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.dd.plist.NSArray;
    import com.dd.plist.NSDictionary;
    import com.dd.plist.NSObject;
    import com.dd.plist.NSString;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.util.List;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    Description: "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/objective-cpp/groovy/src/main/headers/greeter.h

    #define __STDC_LIMIT_MACROS
    #import <stdint.h>
    #import <Foundation/Foundation.h>
    
    @interface Greeter : NSObject
        - (void)sayHello;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 139 bytes
    - Viewed (0)
Back to top